-
Notifications
You must be signed in to change notification settings - Fork 2
/
.stylelintrc.json
45 lines (45 loc) · 1.04 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-rational-order",
"stylelint-config-prettier"
],
"rules": {
"selector-class-pattern": null,
"function-no-unknown": [true, { "ignoreFunctions": ["theme"] }],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"screen",
"svg-load",
"theme"
]
}
],
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null,
"rule-empty-line-before": [
"always-multi-line",
{
"except": ["first-nested"],
"ignore": ["after-comment"]
}
],
"number-leading-zero": "always",
"max-nesting-depth": 4,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": ["/^(^)/"]
}
],
"block-opening-brace-space-before": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always-single-line"
}
}