-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
33 lines (32 loc) · 1.09 KB
/
.stylelintrc.json
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
{
"extends": ["stylelint-config-standard", "stylelint-config-recess-order"],
"rules": {
"indentation": 3,
"at-rule-no-vendor-prefix": true,
"at-rule-empty-line-before": "never",
"rule-empty-line-before": ["always-multi-line",{
"ignore": [
"first-nested"
]
}],
"declaration-empty-line-before": ["always",{
"ignore": [
"after-declaration","inside-single-line-block","first-nested"
]
}],
"no-eol-whitespace": null,
"font-family-no-missing-generic-family-keyword": null,
"block-closing-brace-newline-before": "always",
"block-closing-brace-newline-after": "always",
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always",
"at-rule-semicolon-newline-after": "always",
"at-rule-semicolon-space-before": "never",
"selector-max-class": null,
"unit-whitelist": null,
"selector-pseudo-element-colon-notation": "single",
"no-missing-end-of-source-newline": null,
"color-hex-case": null,
"color-hex-length": null
}
}