-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
37 lines (37 loc) · 1.02 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
{
"extends": "stylelint-config-sass-guidelines",
"plugins": ["stylelint-order"],
"rules": {
"max-nesting-depth": 5,
"selector-max-compound-selectors": 5,
"property-no-unknown": [true, {
"ignoreSelectors": ":export"
}],
"property-no-vendor-prefix": [true, {
"ignoreProperties": "box-flex"
}],
"order/order": [
[
"custom-properties",
"dollar-variables",
{
"type": "at-rule",
"name": "extend"
},
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
"declarations",
{
"type": "at-rule",
"name": "include",
"hasBlock": true
},
"rules"
]
],
"order/properties-alphabetical-order": true
}
}