Code should always be written in such a way that makes it look like a single person wrote it, no matter how many people have contributed and that is the purpose of this set of rules powered by stylelint.
You need to have stylelint
and this config as part of your devDependencies
.
npm i stylelint stylelint-config-semantic -D
To use all the rules all at once add stylelint-config-semantic
to your extends
property in .stylelintrc
.
{
"extends": [
"stylelint-config-semantic"
]
}
Each rule for stylelint-config-semantic
can be loaded individually if you only want to load a specific rule. They are all located in the lib
folder.
Load the color
and general
rule set.
{
"extends": [
"stylelint-config-semantic/lib/color",
"stylelint-config-semantic/lib/general"
]
}
To override the rules set by stylelint-config-semantic
you need to define your own rules and set them as you see fit.
{
"extends": [
"stylelint-config-semantic"
],
"rules": {
"indentation": 2
}
}