stylelint-config-devshelf
v1.3.0
Published
DevShelf config for stylelint
Downloads
25
Readme
stylelint-config-devshelf
Devshelf shareable config for stylelint.
Installation
$ npm install stylelint-config-devshelf
Usage
Set your stylelint config to:
{
"extends": "stylelint-config-devshelf"
}
Extending the config
Simply add a "rules"
key to your config and add your overrides there.
For example, to change the indentation
to tabs and turn off the number-leading-zero
rule:
{
"extends": "stylelint-config-devshelf",
"rules": {
"indentation": "tab",
"number-leading-zero": null
}
}