-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
265 lines (261 loc) · 10.8 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
{
"plugins": [
"stylelint-declaration-strict-value",
"stylelint-order",
"stylelint-scss"
],
"ignoreFiles": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"src/assets/globo*.css"
],
"rules":{
"at-rule-blacklist": null,
"at-rule-empty-line-before": [ "always", {
"except": [ "blockless-after-blockless", "first-nested" ],
"ignore": [ "after-comment" ],
"ignoreAtRules": [ "else", "import" ]
}],
"at-rule-name-case": "lower",
"at-rule-name-newline-after": null,
"at-rule-name-space-after": "always",
"at-rule-no-unknown": [ true, {
"ignoreAtRules": [ "at-root", "content", "each", "else", "error", "extend", "for", "function", "if", "include", "mixin", "return" ]
}],
"at-rule-no-vendor-prefix": true,
"at-rule-semicolon-newline-after": "always",
"at-rule-semicolon-space-before": "never",
"at-rule-whitelist": null,
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-after": [ "always", {
"ignoreAtRules": [ "if", "else" ]
}],
"block-closing-brace-newline-before": "always-multi-line",
"block-closing-brace-space-after": null,
"block-closing-brace-space-before": null,
"block-no-empty": true,
"block-opening-brace-newline-after": "always-multi-line",
"block-opening-brace-newline-before": null,
"block-opening-brace-space-after": "always-single-line",
"block-opening-brace-space-before": "always",
"color-hex-case": "lower",
"color-hex-length": "long",
"color-named": [ "never", {
"ignore": [ "inside-function" ]
}],
"color-no-hex": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [ "always", {
"except": [ "first-nested" ],
"ignore": [ "after-comment", "stylelint-commands" ]
}],
"comment-no-empty": true,
"comment-whitespace-inside": "always",
"comment-word-blacklist": null,
"custom-media-pattern": null,
"custom-property-empty-line-before": "never",
"custom-property-pattern": null,
"declaration-bang-space-after": "never",
"declaration-bang-space-before": "always",
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-redundant-longhand-properties": true,
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-semicolon-newline-after": "always",
"declaration-block-semicolon-newline-before": "never-multi-line",
"declaration-block-semicolon-space-after": "always-single-line",
"declaration-block-semicolon-space-before": "never",
"declaration-block-single-line-max-declarations": 1,
"declaration-block-trailing-semicolon": "always",
"declaration-colon-newline-after": "always-multi-line",
"declaration-colon-space-after": "always-single-line",
"declaration-colon-space-before": "never",
"declaration-empty-line-before": "never",
"declaration-no-important": null,
"declaration-property-unit-blacklist": null,
"declaration-property-unit-whitelist": null,
"declaration-property-value-blacklist": null,
"declaration-property-value-whitelist": null,
"font-family-name-quotes": "always-where-required",
"font-family-no-duplicate-names": true,
"font-family-no-missing-generic-family-keyword": true,
"font-weight-notation": "numeric",
"function-blacklist": null,
"function-calc-no-unspaced-operator": true,
"function-comma-newline-after": "never-multi-line",
"function-comma-newline-before": "never-multi-line",
"function-comma-space-after": "always",
"function-comma-space-before": "never",
"function-linear-gradient-no-nonstandard-direction": null,
"function-max-empty-lines": 0,
"function-name-case": "lower",
"function-parentheses-newline-inside": "never-multi-line",
"function-parentheses-space-inside": "never",
"function-url-no-scheme-relative": true,
"function-url-quotes": "always",
"function-url-scheme-blacklist": null,
"function-url-scheme-whitelist": null,
"function-whitelist": null,
"function-whitespace-after": "always",
"indentation": 4,
"keyframe-declaration-no-important": true,
"length-zero-no-unit": true,
"max-empty-lines": [ 2, {
"ignore": [ "comments" ]
}],
"max-line-length": [ 120, {
"ignore": [ "comments" ]
}],
"max-nesting-depth": [ 5, {
"ignore": [ "blockless-at-rules" ]
}],
"media-feature-colon-space-after": "always",
"media-feature-colon-space-before": "never",
"media-feature-name-blacklist": null,
"media-feature-name-case": "lower",
"media-feature-name-no-unknown": true,
"media-feature-name-no-vendor-prefix": null,
"media-feature-name-whitelist": null,
"media-feature-parentheses-space-inside": "never",
"media-feature-range-operator-space-after": "always",
"media-feature-range-operator-space-before": "always",
"media-query-list-comma-newline-after": "always-multi-line",
"media-query-list-comma-newline-before": "never-multi-line",
"media-query-list-comma-space-after": "always",
"media-query-list-comma-space-before": "never",
"no-descending-specificity": null,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": null,
"no-empty-source": true,
"no-eol-whitespace": true,
"no-extra-semicolons": true,
"no-invalid-double-slash-comments": true,
"no-missing-end-of-source-newline": true,
"no-unknown-animations": true,
"number-leading-zero": "never",
"number-max-precision": 8,
"number-no-trailing-zeros": true,
"property-blacklist": null,
"property-case": "lower",
"property-no-unknown": [ true, {
"ignoreProperties": [ "-ms-word-break" ]
}],
"property-no-vendor-prefix": null,
"property-whitelist": null,
"rule-empty-line-before": [ "always", {
"except": [ "first-nested" ],
"ignore": [ "after-comment" ]
}],
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-blacklist": null,
"selector-attribute-operator-space-after": "never",
"selector-attribute-operator-space-before": "never",
"selector-attribute-operator-whitelist": null,
"selector-attribute-quotes": "always",
"selector-class-pattern": null,
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-descendant-combinator-no-non-space": true,
"selector-id-pattern": null,
"selector-list-comma-newline-after": "always-multi-line",
"selector-list-comma-newline-before": "never-multi-line",
"selector-list-comma-space-after": "always-single-line",
"selector-list-comma-space-before": "never",
"selector-max-attribute": 3,
"selector-max-combinators": 5,
"selector-max-compound-selectors": 6,
"selector-max-empty-lines": 1,
"selector-max-id": 0,
"selector-max-pseudo-class": 2,
"selector-max-specificity": null,
"selector-max-type": 5,
"selector-max-universal": 1,
"selector-nested-pattern": null,
"selector-no-qualifying-type": [ true, {
"ignore": [ "attribute" ]
}],
"selector-no-vendor-prefix": null,
"selector-pseudo-class-blacklist": null,
"selector-pseudo-class-case": "lower",
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-pseudo-class-whitelist": null,
"selector-pseudo-element-case": "lower",
"selector-pseudo-element-colon-notation": "double",
"selector-pseudo-element-no-unknown": [ true, {
"ignorePseudoElements": [ "inactive-selection" ]
}],
"selector-type-case": "lower",
"selector-type-no-unknown": true,
"shorthand-property-no-redundant-values": true,
"string-no-newline": true,
"string-quotes": "single",
"time-min-milliseconds": 100,
"unit-blacklist": null,
"unit-case": "lower",
"unit-no-unknown": [ true, {
"ignoreUnits": [ "xs", "xl" ]
}],
"unit-whitelist": null,
"value-keyword-case": "lower",
"value-list-comma-newline-after": "always-multi-line",
"value-list-comma-newline-before": "never-multi-line",
"value-list-comma-space-after": "always-single-line",
"value-list-comma-space-before": "never",
"value-list-max-empty-lines": 1,
"value-no-vendor-prefix": null,
"scale-unlimited/declaration-strict-value": [[ "/color/", "fill", "font-family", "z-index" ], {
"ignoreKeywords": {
"/color/": [ "currentColor", "inherit", "transparent", "transparent transparent", "transparent transparent transparent" ],
"fill": [ "currentColor", "inherit" ],
"font-family": "inherit",
"z-index": "inherit"
},
}],
"order/properties-alphabetical-order": null,
"scss/at-else-closing-brace-newline-after": null,
"scss/at-else-closing-brace-space-after": null,
"scss/at-else-empty-line-before": "never",
"scss/at-else-if-parentheses-space-before": "always",
"scss/at-extend-no-missing-placeholder": true,
"scss/at-function-named-arguments": null,
"scss/at-function-parentheses-space-before": "never",
"scss/at-function-pattern": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-import-no-partial-leading-underscore": true,
"scss/at-import-partial-extension-blacklist": null,
"scss/at-import-partial-extension-whitelist": null,
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-mixin-named-arguments": null,
"scss/at-mixin-parentheses-space-before": "never",
"scss/at-mixin-pattern": null,
"scss/at-rule-no-unknown": [ true, {
"ignoreAtRules": [ "at-root", "content", "each", "else", "error", "extend", "for", "function", "if", "include", "mixin", "return" ]
}],
"scss/declaration-nested-properties-no-divided-groups": null,
"scss/declaration-nested-properties": "never",
"scss/dollar-variable-colon-newline-after": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-colon-space-before": "never",
"scss/dollar-variable-default": null,
"scss/dollar-variable-empty-line-before": null,
"scss/dollar-variable-no-missing-interpolation": null,
"scss/dollar-variable-pattern": null,
"scss/double-slash-comment-empty-line-before": [ "always", {
"except": [ "first-nested" ],
"ignore": [ "between-comments", "stylelint-commands" ]
}],
"scss/double-slash-comment-inline": null,
"scss/double-slash-comment-whitespace-inside": "always",
"scss/media-feature-value-dollar-variable": null,
"scss/no-duplicate-dollar-variables": null,
"scss/operator-no-newline-after": null,
"scss/operator-no-newline-before": null,
"scss/operator-no-unspaced": null,
"scss/partial-no-import": true,
"scss/percent-placeholder-pattern": null,
"scss/selector-no-redundant-nesting-selector": null
}
}