-
Notifications
You must be signed in to change notification settings - Fork 152
/
.stylelintrc
36 lines (36 loc) · 1.38 KB
/
.stylelintrc
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
28
29
30
31
32
33
34
35
36
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 2,
"string-quotes": "double",
"no-duplicate-selectors": true,
"color-hex-case": "upper",
"color-hex-length": "short",
"selector-max-id": 0,
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"selector-type-case": "upper",
"declaration-block-trailing-semicolon": "always",
"declaration-no-important": true,
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always-single-line",
"declaration-colon-newline-after": null,
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"number-leading-zero": "never",
"function-url-quotes": "always",
"font-family-name-quotes": "always-where-required",
"comment-whitespace-inside": "always",
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"at-rule-no-vendor-prefix": true,
"selector-pseudo-element-colon-notation": "double",
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-no-vendor-prefix": true,
"media-feature-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-parentheses-space-inside": "always",
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "always"
}
}