Package Exports
- stylelint-config-recommended-scss
- stylelint-config-recommended-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-recommended-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-recommended-scss
The recommended shareable SCSS config for Stylelint.
This config:
- extends the
stylelint-config-recommended
shared config and configures its rules for SCSS - bundles the
stylelint-scss
plugin pack and turns on its rules that check for possible errors - bundles the
postcss-scss
custom syntax and configures it
This config is extended by the stylelint-config-standard-scss
shared config. That config is better suited to most users as it also turns on the stylistic rules in the stylelint-scss
plugin pack.
To see the rules that this config uses, please read the config itself.
Installation
npm install --save-dev stylelint-config-recommended-scss
Usage
Set your stylelint
config to:
{
"extends": "stylelint-config-recommended-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/at-if-no-null
rule:
{
"extends": "stylelint-config-recommended-scss",
"rules": {
"scss/at-if-no-null": null
}
}