This stylelint config contains rules specific to how I write my CSS. It is intended to be used with Prettier.
To see the rules that this config uses, please read the config itself.
npm install stylelint-config-lowmess --save-dev
Create a .stylelintrc
file at the base of your project:
{
"extends": "stylelint-config-lowmess"
}
Simply add a "rules"
key to your config, then add your overrides and additions there.
For example, to change the indentation
to tabs:
{
"extends": "stylelint-config-lowmess",
"rules": {
"indentation": "tab"
}
}