From 0e5d7c36107b5da30e1679bc0f6b06ed5be57480 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 5 Jan 2023 14:10:07 -0600 Subject: [PATCH] stylint: disable selector-class-pattern, remove reset.scss --- .stylelintrc.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index c8a71a164..24ff6a4bf 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,6 +1,5 @@ { "extends": ["stylelint-config-standard"], - "ignoreFiles": ["app/styles/reset.scss"], "plugins": ["stylelint-scss"], "rules": { "at-rule-no-unknown": null, @@ -10,7 +9,8 @@ "font-family-no-missing-generic-family-keyword": [true, { "ignoreFontFamilies": ["ForkAwesome", "Font Awesome 5 Free", "OpenDyslexic", "soapbox"] }], "no-descending-specificity": null, "no-duplicate-selectors": null, - "scss/at-rule-no-unknown": [true, { "ignoreAtRules": ["/tailwind/", "layer"]}], - "no-invalid-position-at-import-rule": null + "no-invalid-position-at-import-rule": null, + "scss/at-rule-no-unknown": [true, { "ignoreAtRules": ["tailwind", "apply", "layer", "config"]}], + "selector-class-pattern": null } }