generated from ermish/template-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
43 lines (43 loc) · 1.22 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
{
"extends": ["stylelint-config-recommended"],
"plugins": ["stylelint-order", "stylelint-scss"],
"rules": {
"at-rule-no-unknown": null,
"color-hex-length": "short",
"color-named": "never",
"comment-empty-line-before": null,
"indentation": 2,
"max-line-length": 100,
"max-nesting-depth": 5,
"no-descending-specificity": null,
"no-eol-whitespace": [
true,
{
"ignore": ["empty-lines"]
}
],
"order/order": [
{
"type": "at-rule",
"name": "include"
},
{
"type": "at-rule",
"name": "extend"
},
"custom-properties",
"dollar-variables",
"declarations",
"rules",
{
"type": "at-rule",
"name": "media"
}
],
"order/properties-alphabetical-order": true,
"shorthand-property-no-redundant-values": null,
"selector-list-comma-newline-after": "always-multi-line",
"string-quotes": "single",
"value-list-comma-newline-after": "always-multi-line"
}
}