Created
August 14, 2017 11:50
-
-
Save pafnuty/4ce058cbeda7f96f71635855d0dac70c to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"extends": "stylelint-config-standard", | |
"rules": { | |
"indentation": 2, | |
"string-quotes": "single", | |
"no-duplicate-selectors": true, | |
"color-hex-case": "lower", | |
"color-hex-length": "long", | |
"color-named": "never", | |
"selector-no-id": true, | |
"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": "always", | |
"declaration-colon-space-before": "never", | |
"declaration-colon-space-after": "always", | |
"number-leading-zero": "never", | |
"function-url-quotes": "always", | |
"font-weight-notation": "named-where-possible", | |
"font-family-name-quotes": "always-where-recommended", | |
"comment-whitespace-inside": "always", | |
"comment-empty-line-before": "always", | |
"rule-empty-line-before": "always", | |
"selector-pseudo-class-parentheses-space-inside": "never", | |
"media-feature-range-operator-space-before": "always", | |
"media-feature-range-operator-space-after": "always", | |
"media-feature-parentheses-space-inside": "never", | |
"media-feature-colon-space-before": "never", | |
"media-feature-colon-space-after": "always" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment