-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
54 lines (53 loc) · 1.3 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
{
"processors": ["stylelint-processor-html"],
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss"
],
"rules": {
"font-family-name-quotes": "always-unless-keyword",
"string-quotes": "double",
"value-keyword-case": "lower",
"max-empty-lines": 2,
"indentation": "tab",
"no-empty-source": null,
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"at-rule-empty-line-before": [
"always",
{
"ignore": ["after-comment"],
"ignoreAtRules": ["else"],
"except": ["first-nested", "after-same-name"]
}
],
"at-rule-no-unknown": [ true, {
"ignoreAtRules": ["extend", "at-root", "debug", "warn", "error", "if", "else", "for", "each", "while", "mixin", "include", "content", "return", "function"]
}],
"rule-empty-line-before": [
"always",
{
"ignore": ["after-comment"],
"except": ["first-nested"]
}
],
"comment-empty-line-before": [
"always",
{
"ignore": ["after-comment"],
"except": ["first-nested"]
}
],
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": ["if"]
}
],
"no-eol-whitespace": [
true,
{
"ignore": ["empty-lines"]
}
]
}
}