Skip to content

Instantly share code, notes, and snippets.

@Sergih28
Created August 4, 2021 09:34
Show Gist options
  • Save Sergih28/0fe894ed806387323d64f2325b6dbaf0 to your computer and use it in GitHub Desktop.
Save Sergih28/0fe894ed806387323d64f2325b6dbaf0 to your computer and use it in GitHub Desktop.
stylelint config
{
"extends": "stylelint-config-sass-guidelines",
"plugins": ["stylelint-order"],
"rules": {
"indentation": 4,
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"string-quotes": "single",
"color-hex-length": "long",
"selector-max-id": 2,
"order/order": [
"custom-properties",
"dollar-variables",
"at-variables",
"declarations",
"rules",
"at-rules"
],
"order/properties-alphabetical-order": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment