Skip to content

Instantly share code, notes, and snippets.

@ManzDev
Last active May 19, 2019 19:47
Show Gist options
  • Select an option

  • Save ManzDev/e3a8c8de933b462d34de620de5df10c7 to your computer and use it in GitHub Desktop.

Select an option

Save ManzDev/e3a8c8de933b462d34de620de5df10c7 to your computer and use it in GitHub Desktop.
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4,
"string-quotes": "single",
"no-duplicate-selectors": true,
"color-hex-case": "lower",
"color-hex-length": "short",
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"selector-attribute-operator-space-before": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-brackets-space-inside": "never",
"declaration-block-trailing-semicolon": "never",
"declaration-no-important": true,
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"number-leading-zero": "always",
"function-url-quotes": "never",
"font-family-name-quotes": "always-where-recommended",
"comment-whitespace-inside": "always",
"comment-empty-line-before": "always",
"at-rule-no-vendor-prefix": true,
"rule-empty-line-before": "always-multi-line",
"selector-pseudo-element-colon-notation": "double",
"selector-no-vendor-prefix": true,
"media-feature-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-parentheses-space-inside": "never",
"media-feature-name-no-vendor-prefix": true,
"media-feature-colon-space-before": "always",
"media-feature-colon-space-after": "always"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment