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-rodesk -D
To use all the rules all at once add stylelint-rodesk
to your
extends
property in .stylelintrc
.
{
"extends": [
"stylelint-rodesk"
]
}
To override the rules set by stylelint-rodesk
you need to define your
own rules and set them as shown below.
{
"extends": [
"stylelint-rodesk"
],
"rules": {
"indentation": 2
}
}