-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.stylelintrc
49 lines (49 loc) · 1.17 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
{
"ignoreFiles": ["dist/**/*", "**/dist/**/*", "*.vue"],
"extends": ["stylelint-config-standard", "stylelint-scss"],
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"content",
"include",
"function",
"return"
]
}
],
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": ["if", "else"]
}
],
"color-hex-length": "long",
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"declaration-colon-newline-after": null,
"declaration-colon-space-after": null,
"declaration-empty-line-before": null,
"function-max-empty-lines": null,
"no-eol-whitespace": null,
"number-no-trailing-zeros": null,
"rule-empty-line-before": null,
"selector-max-id": 0,
"string-quotes": "single",
"value-list-max-empty-lines": null,
"indentation": null
}
}