-
Notifications
You must be signed in to change notification settings - Fork 5
/
.stylelintrc
62 lines (62 loc) · 1.97 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
{
"extends": "stylelint-config-recommended",
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"customSyntax": "postcss-scss",
"rules": {
"order/order": [
"dollar-variables",
{
"type": "at-rule",
"name": "extend"
},
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
"custom-properties",
"declarations",
{
"type": "at-rule",
"name": "include",
"hasBlock": true
},
"rules"
],
"order/properties-alphabetical-order": true,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["at-root"]
}
],
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-else-if-parentheses-space-before": "always",
"scss/at-function-parentheses-space-before": "never",
"scss/at-mixin-parentheses-space-before": "never",
"scss/dollar-variable-colon-space-after": "always",
"scss/dollar-variable-empty-line-before": [
"always",
{
"except": [
"first-nested",
"after-comment",
"after-dollar-variable"
]
}
],
"scss/dollar-variable-no-missing-interpolation": true,
"scss/selector-no-redundant-nesting-selector": true,
"at-rule-no-unknown": null,
"block-no-empty": null,
"function-no-unknown": null,
"no-descending-specificity": null
}
}