From ff470a9ae0e47649922e324ca3f7f8dd2637d86b Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Mon, 17 Feb 2025 20:42:24 +0000 Subject: [PATCH] feat: enable scss linting by default (#6408) Enable stylelint-config-recommended-scss by default when linting SCSS files. --- TEMPLATES/.stylelintrc.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/TEMPLATES/.stylelintrc.json b/TEMPLATES/.stylelintrc.json index 40db42c6..0e5783e8 100644 --- a/TEMPLATES/.stylelintrc.json +++ b/TEMPLATES/.stylelintrc.json @@ -1,3 +1,10 @@ { - "extends": "stylelint-config-standard" + "extends": ["stylelint-config-standard"], + "overrides": [ + { + "extends": ["stylelint-config-recommended-scss"], + "files": ["*.scss", "**/*.scss"], + "customSyntax": "postcss-scss" + } + ] }