0.11.1 • Published 2 years ago
@democrance/stylelint-config v0.11.1
stylelint-config-recommended
The recommended shareable config for Stylelint.
It turns on all the possible errors rules within Stylelint.
Use it as is or as a foundation for your own config.
Installation
npm install stylelint-config-recommended --save-dev
Usage
Set your stylelint
config to:
{
"extends": "stylelint-config-recommended"
}
Extending the config
Add a "rules"
key to your config, then add your overrides and additions there.
For example, to change the at-rule-no-unknown
rule to use its ignoreAtRules
option, turn off the block-no-empty
rule, and add the unit-allowed-list
rule:
{
"extends": "stylelint-config-recommended",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["extends"]
}
],
"block-no-empty": null,
"unit-allowed-list": ["em", "rem", "s"]
}
}
Changelog
License
0.10.0
2 years ago
0.11.0
2 years ago
0.10.1
2 years ago
0.9.0
2 years ago
0.11.1
2 years ago
0.8.0
2 years ago
0.5.0
2 years ago
0.7.0
2 years ago
0.6.0
2 years ago
0.5.1
2 years ago
0.4.3
2 years ago
0.1.0
2 years ago
0.3.0
2 years ago
0.2.0
2 years ago
0.4.1
2 years ago
0.3.2
2 years ago
0.4.0
2 years ago
0.3.1
2 years ago
0.4.2
2 years ago
1.1.1
3 years ago