@emble/stylelint-config
v1.3.0
Published
Emble Stylelint Config
Downloads
250
Readme
Installation
npm install @emble/stylelint-config
Usage
Set your stylelint config to:
{
"extends": "@emble/stylelint-config"
}
Extending the config
Simply add a "rules" key to your config and add your overrides there.
For example, to change the indentation to tabs:
{
"extends": "@emble/stylelint-config",
"rules": {
"indentation": "tab"
}
}