feat: enable scss linting by default (#6408)

Enable stylelint-config-recommended-scss by default when linting SCSS
files.
This commit is contained in:
Marco Ferrari 2025-02-17 20:42:24 +00:00 committed by GitHub
parent d7d3a3457f
commit ff470a9ae0
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194

View file

@ -1,3 +1,10 @@
{
"extends": "stylelint-config-standard"
"extends": ["stylelint-config-standard"],
"overrides": [
{
"extends": ["stylelint-config-recommended-scss"],
"files": ["*.scss", "**/*.scss"],
"customSyntax": "postcss-scss"
}
]
}