@tangoca/stylelint-config
v1.0.3
Published
Tango's shareable styleint configuration.
Downloads
3
Readme
Tango's Stylelint Configuration
Installation
npm install @tangoca/stylelint-config
Set your stylelint config to:
{
"extends": "@tangoca/stylelint-config"
}
Extending the config
Simply add a "rules" key to your config and add your overrides there.
For example, to change the max nesting depth:
{
"extends": "@tangoca/stylelint-config",
"rules": {
"max-nesting-depth": 2
}
}