-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
57 lines (57 loc) · 1.35 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
55
56
57
{
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"rules": {
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["export", "import", "global", "local"]
}
],
"property-no-unknown": [true, { "ignoreProperties": ["composes"] }],
"value-no-vendor-prefix": true,
"at-rule-empty-line-before": [
"always",
{
"except": ["blockless-after-same-name-blockless", "first-nested"],
"ignore": ["after-comment"],
"ignoreAtRules": ["if", "else"]
}
],
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": ["if", "else"]
}
],
"function-parentheses-newline-inside": null,
"declaration-colon-newline-after": null,
"indentation": [2, { "ignore": "inside-parens" }],
"block-opening-brace-space-before": null,
"no-descending-specificity": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"at-root",
"content",
"debug",
"each",
"else",
"else if",
"error",
"extend",
"for",
"function",
"if",
"import",
"include",
"media",
"mixin",
"return",
"warn",
"while"
]
}
]
}
}