-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.stylelintrc
66 lines (66 loc) · 1.33 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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"order/properties-order": [
"width",
"height",
"min-width",
"min-height",
"max-width",
"max-height",
"font",
"color",
"text-shadow",
"text-decoration",
"text-transform",
"text-align",
"white-space",
"background",
"padding",
"margin",
"border",
"border-radius",
"position",
"display",
"content",
"left",
"top",
"right",
"bottom",
"vertical-align"
],
"no-descending-specificity": null,
"shorthand-property-no-redundant-values": null,
"at-rule-empty-line-before": [
"never",
except: [
"blockless-after-same-name-blockless",
"blockless-after-blockless"
],
ignore: [
"after-comment",
"blockless-after-blockless"
]
],
"function-url-quotes": "always",
"max-nesting-depth": 10,
"string-quotes": "single",
"indentation": null,
"block-no-empty": null,
"comment-empty-line-before": "never",
"rule-empty-line-before": [
"always", {
except: [
"first-nested",
"inside-block-and-after-rule"
],
ignore: [
"inside-block"
]
}
]
}
}