1.3.0 • Published 8 years ago
stylelint-config-devshelf v1.3.0
stylelint-config-devshelf
Devshelf shareable config for stylelint.
Installation
$ npm install stylelint-config-devshelfUsage
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
}
}