Skip to content

Instantly share code, notes, and snippets.

@SmolinPavel
Created December 2, 2021 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SmolinPavel/a5c7208ce8020170962f9812dcfa4285 to your computer and use it in GitHub Desktop.
Save SmolinPavel/a5c7208ce8020170962f9812dcfa4285 to your computer and use it in GitHub Desktop.
.stylelintrc.json example
// 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