StyleLint configuration used by Bod CLI.
npm install stylelint-config-bod







This package includes the shareable StyleLint configuration used by Bod CLI.
``bash`
npm install -D stylelint-config-bod
set .stylelintrc.json to:
`json`
{
"extends": "stylelint-config-bod"
}
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:
`json`
{
"extends": "stylelint-config-bod",
"rules": {
"indentation": "tab",
"number-leading-zero": null
}
}
- Based on stylelint-config-standard`.
- Idiomatic order.


