Created
December 2, 2021 17:16
-
-
Save SmolinPavel/a5c7208ce8020170962f9812dcfa4285 to your computer and use it in GitHub Desktop.
.stylelintrc.json example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// yarn add -D stylelint stylelint-config-standard stylelint-order-config-standard stylelint-order | |
// "stylelint": "stylelint \"**/*.(s)css\" --fix", | |
{ | |
"extends": [ | |
"stylelint-config-standard", | |
"stylelint-order-config-standard" | |
], | |
"plugins": [ | |
"stylelint-order" | |
], | |
"rules": { | |
"indentation": [ | |
2 | |
], | |
"color-hex-case": "upper" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment