-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
54 lines (54 loc) · 1.05 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
44
45
46
47
48
49
50
51
52
53
54
{
"root": true,
"plugins": ["stylelint-order"],
"customSyntax": "postcss-html",
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"function",
"if",
"each",
"include",
"mixin",
"tailwind",
"extend",
"variants",
"apply",
"responsive",
"screen"
]
}
],
"font-family-name-quotes": "always-where-required",
"order/order": [
[
"dollar-variables",
"custom-properties",
"at-rules",
"declarations",
{
"type": "at-rule",
"name": "supports"
},
{
"type": "at-rule",
"name": "media"
},
"rules"
],
{
"severity": "warning"
}
],
"rule-empty-line-before": [
"always",
{
"ignore": ["after-comment", "first-nested"]
}
]
},
"ignoreFiles": ["dist/*.css"]
}