-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
37 lines (37 loc) · 999 Bytes
/
.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
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-html",
"stylelint-config-recommended-vue"
],
"rules": {
"indentation": 4,
"no-descending-specificity": null,
"at-rule-no-unknown": null,
"at-rule-empty-line-before": [
"always",
{
"except": ["first-nested", "after-same-name"],
"ignore": ["after-comment"],
"ignoreAtRules": [
"if",
"else",
"media",
"include",
"font-face",
"for",
"mixin",
"function"
]
}
],
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": ["if", "else"]
}
]
}
}