{ | |
"plugins": ["stylelint-prettier"], | |
"extends": [ | |
"stylelint-config-recommended", | |
"stylelint-config-sass-guidelines", | |
"stylelint-config-prettier" | |
], | |
"overrides": [ | |
{ | |
"files": ["**/*.scss"], | |
"customSyntax": "postcss-scss" | |
} | |
], | |
"rules": { | |
"prettier/prettier": true, | |
"function-parentheses-space-inside": null, | |
"no-descending-specificity": null, | |
"max-nesting-depth": 2, | |
"selector-max-id": 1 | |
} | |
} | |