Package Exports
- stylelint-config-standard-scss
- stylelint-config-standard-scss/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (stylelint-config-standard-scss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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.
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
}
}