-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
59 lines (49 loc) · 1.4 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
{
"defaultSeverity": "warning",
"plugins": [
"stylelint-order"
],
"rules": {
"color-hex-case": "lower",
"color-hex-length": "long",
"color-named": "never",
"color-no-invalid-hex": true,
"font-family-name-quotes": "always-where-recommended",
"font-family-no-duplicate-names": true,
"value-keyword-case": "lower",
"value-no-vendor-prefix": true,
"number-leading-zero": "never",
"number-max-precision": 2,
"number-no-trailing-zeros": true,
"string-no-newline": true,
"string-quotes": "single",
"unit-blacklist": ["em"],
"unit-case": "lower",
"unit-no-unknown": true,
"property-case": "lower",
"property-no-unknown": true,
"property-no-vendor-prefix": true,
"selector-max-attribute": 0,
"selector-max-id": 0,
"selector-no-vendor-prefix": true,
"function-comma-space-after": "always",
"function-parentheses-space-inside": "never",
"function-max-empty-lines": 0,
"function-calc-no-unspaced-operator": true,
"block-no-empty": true,
"block-closing-brace-empty-line-before": "never",
"comment-no-empty": true,
"indentation": "tab",
"length-zero-no-unit": true,
"no-duplicate-selectors": true,
"no-eol-whitespace": true,
"no-extra-semicolons": true,
"no-invalid-double-slash-comments": true,
"shorthand-property-no-redundant-values": true,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true
}
}