mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-22 12:42:09 -05:00
feat: enable scss linting by default
Enable stylelint-config-recommended-scss by default when linting SCSS files.
This commit is contained in:
parent
6b60f4c968
commit
48b6b47700
1 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
{
|
{
|
||||||
"extends": "stylelint-config-standard"
|
"extends": ["stylelint-config-standard"],
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"extends": ["stylelint-config-recommended-scss"],
|
||||||
|
"files": ["*.scss", "**/*.scss"],
|
||||||
|
"customSyntax": "postcss-scss"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue