-
Notifications
You must be signed in to change notification settings - Fork 4
/
.stylelintrc
48 lines (48 loc) · 1.12 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
{
"extends": ["stylelint-config-standard-scss"],
"rules": {
"at-rule-empty-line-before": ["always", {
"ignore": [
"after-comment",
"blockless-after-same-name-blockless",
"inside-block",
],
}],
"at-rule-no-unknown": [true, {
"ignoreAtRules": [
"content",
"else",
"for",
"function",
"if",
"include",
"mixin",
"return",
"warn",
],
}],
"block-closing-brace-newline-after": ["always", {
"ignoreAtRules": ["if", "else"],
}],
"declaration-colon-newline-after": null,
"function-url-quotes": ["always"],
"function-disallowed-list": ["random"],
"indentation": null,
"max-nesting-depth": [5, {
"ignore": ["blockless-at-rules"],
}],
"no-descending-specificity": null,
"rule-empty-line-before": ["always", {
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}],
"string-quotes": null,
"value-list-comma-newline-after": null,
"scss/comment-no-empty": null,
"scss/no-global-function-names": null,
}
}