-
Notifications
You must be signed in to change notification settings - Fork 5
/
.stylelintrc
108 lines (108 loc) · 3.12 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order",
],
"plugins": [
"stylelint-order"
],
"rules": {
"no-empty-source": null,
"order/order": [
"at-rules",
{
"name": "include",
"type": "at-rule",
"hasBlock": false
},
{
"name": "extend",
"type": "at-rule",
"hasBlock": false
},
"custom-properties",
"declarations",
"at-rules",
{
"name": "include",
"type": "at-rule",
"hasBlock": true
},
"at-rules",
{
"name": "media",
"type": "at-rule",
"hasBlock": true
},
"rules"
],
"block-opening-brace-space-before": "always",
"order/properties-alphabetical-order": null,
"indentation": "tab",
"string-quotes": "double",
"no-duplicate-selectors": null,
"color-hex-case": "lower",
"color-hex-length": "long",
"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",
"max-nesting-depth": 6,
"declaration-colon-space-after": "always",
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"number-leading-zero": "always",
"function-url-quotes": "always",
"font-weight-notation": "numeric",
"comment-empty-line-before": "always",
"at-rule-no-vendor-prefix": true,
"at-rule-empty-line-before": [
"always", {
"except": [
"blockless-after-blockless",
"first-nested"
]
}
],
"rule-empty-line-before": "always",
"selector-pseudo-class-parentheses-space-inside": "always",
"declaration-block-no-duplicate-properties": true,
"no-descending-specificity": null,
"unit-whitelist": [
"em",
"rem",
"vw",
"vh",
"px",
"%",
"s",
"ms",
"deg"
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"function"
]
}
]
}
}