-
Notifications
You must be signed in to change notification settings - Fork 3
/
.stylelintrc
45 lines (45 loc) · 1.45 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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss"
],
"rules": {
"indentation": 4,
"max-empty-lines": 2,
"length-zero-no-unit": null,
"declaration-block-no-duplicate-properties": [true, {
"ignore": [ "consecutive-duplicates-with-different-values" ]
}],
"no-descending-specificity": null,
"value-keyword-case": null,
"at-rule-no-unknown": null,
"rule-empty-line-before": [
"always-multi-line", {
"except": [
"first-nested",
"after-single-line-comment"
]
}
],
"at-rule-empty-line-before": [
"always", {
"except": [
"blockless-after-same-name-blockless",
"first-nested"
],
"ignore": [ "after-comment" ],
"ignoreAtRules": [ "else" ]
}
],
"block-opening-brace-space-before": "always",
"block-closing-brace-newline-after": [
"always", {
"ignoreAtRules": [ "if", "else" ]
}
],
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate"
}
}