stylelint-config-lukkien
v0.8.1
Published
Lukkien config for stylelint
Downloads
43
Readme
stylelint-config-lukkien
Our base Configuration rules to ensure your CSS code is compliant with Lukkien code style.
Installation
npm install --save-dev stylelint stylelint-config-lukkien
or
yarn install --dev stylelint stylelint-config-lukkien
Usage
Set your stylelint config to:
{
"extends": "stylelint-config-lukkien"
}
Extending the config
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:
{
"extends": "stylelint-config-lukkien",
"rules": {
"indentation": "tab",
"number-leading-zero": null
}
}