From 48b6b47700542363aa5005f8e92fbfdbfddb8a84 Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Mon, 2 Sep 2024 14:30:55 +0000 Subject: [PATCH] feat: enable scss linting by default 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" + } + ] }