-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
60 lines (60 loc) · 1.09 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
{
"extends": [
"stylelint-config-standard"
],
"overrides": [
{
"files": ["**/*.scss"],
"customSyntax": "postcss-scss"
}
],
"rules": {
"declaration-empty-line-before": "never",
"rule-empty-line-before": "never",
"value-list-max-empty-lines":1,
"no-descending-specificity":null,
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"v-deep"
]
}
],
"at-rule-empty-line-before": [
"always",
{
"except": [
"inside-block",
"blockless-after-blockless",
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"apply",
"include",
"mixin",
"function",
"return",
"for",
"tailwind",
"each",
"use",
"forward",
"extend",
"if",
"else",
"layer",
"screen"
]
}
]
}
}