-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
143 lines (143 loc) · 3.49 KB
/
.stylelintrc.json
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
{
"extends": ["stylelint-config-standard", "stylelint-config-standard-scss"],
"plugins": ["stylelint-scss", "stylelint-order"],
"files": ["**/*.css", "**/*.scss"],
"rules": {
"selector-class-pattern": null,
"string-quotes": ["single", { "avoidEscape": true }],
"at-rule-no-unknown": null,
"color-hex-case": "upper",
"color-hex-length": "long",
"indentation": [
2,
{
"message": "Please use 2 spaces for indentation."
}
],
"no-descending-specificity": null,
"no-empty-source": null,
"no-missing-end-of-source-newline": null,
"no-eol-whitespace": [
true,
{
"ignore": ["empty-lines"]
}
],
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [":export"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["export"]
}
],
"property-case": null,
"property-no-unknown": [
true,
{
"ignoreSelectors": [":export"]
}
],
"order/order": [
{
"type": "at-rule",
"name": "include",
"parameter": "heading",
"hasBlock": false
},
{
"type": "at-rule",
"name": "include",
"parameter": "font-size",
"hasBlock": false
},
{
"type": "at-rule",
"name": "include",
"parameter": "font-weight",
"hasBlock": false
},
{
"type": "at-rule",
"name": "include",
"parameter": "border-radius",
"hasBlock": false
},
"declarations",
"custom-properties",
{
"type": "at-rule",
"name": "include",
"parameter": "mobile-only",
"hasBlock": true
},
{
"type": "at-rule",
"name": "media",
"hasBlock": true
}
],
"order/properties-order": [
[
{
"emptyLineBefore": "never",
"properties": ["display", "position", "top", "left", "right", "bottom"]
},
{
"emptyLineBefore": "never",
"properties": ["height", "width", "line-height"]
},
{
"emptyLineBefore": "never",
"properties": [
"padding",
"padding-top",
"padding-right",
"padding-bottom",
"padding-left",
"border",
"margin",
"margin-top",
"margin-right",
"margin-bottom",
"margin-right"
]
},
{
"emptyLineBefore": "never",
"properties": ["background", "background-color"]
},
{
"emptyLineBefore": "never",
"properties": ["color", "font-size", "font-weight", "font-family", "letter-spacing"]
}
],
{
"unspecified": "bottom",
"emptyLineBeforeUnspecified": "never",
"emptyLineMinimumPropertyThreshold": 2
}
],
"scss/at-rule-no-unknown": true,
"scss/selector-no-union-class-name": true,
"scss/no-global-function-names": null,
"unit-allowed-list": [
["px", "em", "vh", "vw", "wh", "%"],
{
"ignoreProperties": {
"ms": ["transition", "/animation/"],
"s": ["/transition/", "transform", "/animation/"],
"deg": ["/transition/", "transform", "/$/"],
"grad": ["/$/"],
"turn": ["/$/"],
"rad": ["/$/"]
}
}
],
"shorthand-property-no-redundant-values": true
}
}