-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
executable file
·67 lines (67 loc) · 1.88 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
61
62
63
64
65
66
67
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"block-closing-brace-empty-line-before": null,
"block-closing-brace-newline-after": null,
"block-closing-brace-newline-before": null,
"block-closing-brace-space-before": null,
"block-opening-brace-newline-after": null,
"block-opening-brace-space-after": null,
"block-opening-brace-space-before": null,
"declaration-block-semicolon-newline-after": null,
"declaration-block-semicolon-space-after": null,
"declaration-block-semicolon-space-before": null,
"declaration-block-trailing-semicolon": null,
"indentation": 4,
"no-descending-specificity": null,
"number-leading-zero": "never",
"declaration-colon-newline-after": null,
"max-line-length": 400,
"no-eol-whitespace": [
true,
{
"ignore": [
"empty-lines"
]
}
],
"at-rule-empty-line-before": [
"always",
{
"ignore": [
"inside-block",
"blockless-after-same-name-blockless",
"blockless-after-blockless"
]
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"function"
]
}
]
}
}