Skip to content

Instantly share code, notes, and snippets.

@awebdeveloper
Created April 30, 2017 17:56
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 awebdeveloper/78e02c0d5bd88feedecd91c94d81f70c to your computer and use it in GitHub Desktop.
Save awebdeveloper/78e02c0d5bd88feedecd91c94d81f70c to your computer and use it in GitHub Desktop.
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 2,
"string-quotes": "double",
"no-duplicate-selectors": true,
"color-hex-case": "lower",
"color-hex-length": "short",
"color-named": "never",
"selector-no-id": true,
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"selector-attribute-operator-space-before": "always",
"selector-attribute-operator-space-after": "always",
"declaration-block-trailing-semicolon": "always",
"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": "never",
"function-url-quotes": "always",
"font-weight-notation": "numeric",
"font-family-name-quotes": "always-where-recommended",
"comment-whitespace-inside": "always",
"at-rule-no-vendor-prefix": true,
"rule-empty-line-before": "always",
"selector-pseudo-element-colon-notation": "single",
"selector-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"media-feature-colon-space-after": "always",
"comment-empty-line-before": "never"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment