stylelint-config-lcy
v1.15.10
Published
Stylelint configuration
Downloads
1
Maintainers
Readme
stylelint-config-lcy
Installation
npm install --save-dev stylelint-config-lcy
Usage
Set your stylelint
config to:
{
"extends": "stylelint-config-lcy"
}
Extending the config
Simply add a "rules"
key to your config, then add your overrides and additions there.
For example, to turn off the scss/dollar-variable-pattern
rule:
{
"extends": "stylelint-config-lcy",
"rules": {
"scss/dollar-variable-pattern": null
}
}