@your-source/stylelint-config
v1.0.4
Published
Your Source Stylelint Config
Downloads
9
Readme
Installation
npm install @your-source/stylelint-config
Usage
Set your stylelint config to:
{
"extends": "@your-source/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": "@your-source/stylelint-config",
"rules": {
"indentation": "tab"
}
}