-
Notifications
You must be signed in to change notification settings - Fork 133
/
.stylelintrc
62 lines (62 loc) · 1.46 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
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-prettier-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"],
}],
"color-function-notation": null,
"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-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
],
"selector-not-notation": null,
"value-list-comma-newline-after": null,
"scss/no-global-function-names": null,
"scss/at-import-partial-extension": null,
"scss/comment-no-empty": null,
"scss/dollar-variable-pattern": null,
"scss/at-mixin-pattern": null,
}
}