Usonian CSS shareable config for stylelint.
Configuration rules to ensure your CSS code is compliant with UsonianCSS.
$ npm install --save-dev stylelint-config-usoniancss
Set your stylelint config to:
{
"extends": "stylelint-config-usoniancss"
}
Simply add a "rules"
key to your config and add your overrides there.
For example, to change the indentation
to tabs and disable the color-hex-case
rule:
{
"extends": "stylelint-config-usoniancss",
"rules": {
"indentation": "tab",
"color-hex-case": null
}
}
MIT © Brad Cerasani