You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
2 years ago | |
|---|---|---|
| .. | ||
| LICENSE | 2 years ago | |
| README.md | 2 years ago | |
| index.js | 2 years ago | |
| package.json | 2 years ago | |
README.md
stylelint-config-standard-scss
The standard shareable SCSS config for Stylelint.
This config:
- extends the
stylelint-config-standardshared config and configures its rules for SCSS - extends the
stylelint-config-recommended-scssshared config
To see the rules that this config uses, please read the config itself.
Installation
npm install --save-dev stylelint-config-standard-scss
Usage
Set your stylelint config to:
{
"extends": "stylelint-config-standard-scss"
}
Extending the config
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:
{
"extends": "stylelint-config-standard-scss",
"rules": {
"scss/dollar-variable-pattern": null
}
}