-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
98 lines (98 loc) · 2.2 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
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
{
"extends": "stylelint-config-narwin",
"plugins": [
"stylelint-scss"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"csstree/validator": null,
"value-keyword-case": null,
"color-named": null,
"selector-type-no-unknown": null,
"function-parentheses-newline-inside": null,
"function-parentheses-space-inside": null,
"selector-pseudo-element-colon-notation": "double",
"declaration-empty-line-before": [
"always",
{
"except": [
"first-nested",
"after-comment",
"after-declaration"
]
}
],
"order/order": [
"custom-properties",
"dollar-variables",
{
"type": "at-rule",
"name": "extend"
},
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
"declarations",
"rules",
{
"type": "at-rule",
"name": "include",
"hasBlock": true
}
],
"property-no-unknown": [
true,
{
"ignoreProperties": [
"overflow-scrolling",
"overflow-behavior"
]
}
],
"at-rule-empty-line-before": [
"always",
{
"ignore": [
"after-comment"
],
"ignoreAtRules": [
"else",
"elseif"
],
"except": [
"blockless-after-same-name-blockless",
"first-nested"
]
}
],
"rule-empty-line-before": [
"always",
{
"except": [
"after-single-line-comment",
"first-nested"
]
}
],
"block-opening-brace-space-before": "always",
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": [
"if",
"else",
"elseif"
]
}
],
"at-rule-name-space-after": "always",
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate"
}
}