The standard shareable SCSS config for Stylelint
npm install stylelint-config-standard-scss



> The standard shareable SCSS config for Stylelint.
This config:
- extends the stylelint-config-standard shared config and configures its rules for SCSS
- extends the stylelint-config-recommended-scss shared config
To see the rules that this config uses, please read the config itself.
``shell`
npm install --save-dev stylelint-config-standard-scss
Set your stylelint config to:
`json`
{
"extends": "stylelint-config-standard-scss"
}
Simply add a "rules" key to your config, then add your overrides and additions there.
For example, to turn off the scss/dollar-variable-pattern rule:
`json``
{
"extends": "stylelint-config-standard-scss",
"rules": {
"scss/dollar-variable-pattern": null
}
}