-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelint.config.json
27 lines (27 loc) · 1017 Bytes
/
.stylelint.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4,
"string-quotes": "double",
"no-duplicate-selectors": true,
"color-hex-case": "lower",
"color-hex-length": "long",
"selector-no-combinator": 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-colon-space-before": "never",
"declaration-colon-space-after": "always",
"number-leading-zero": "always",
"function-url-quotes": "always",
"comment-whitespace-inside": "always",
"comment-empty-line-before": "always",
"selector-pseudo-class-parentheses-space-inside": "always",
"selector-no-universal": true,
"media-feature-parentheses-space-inside": "never",
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "never"
}
}