-
Notifications
You must be signed in to change notification settings - Fork 3
/
.stylelintrc
26 lines (26 loc) · 850 Bytes
/
.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
{
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": "single",
"block-no-empty": null,
"color-no-invalid-hex": true,
"font-family-no-missing-generic-family-keyword": null,
"comment-empty-line-before": [ "always", {
"ignore": ["stylelint-commands", "after-comment"]
} ],
"declaration-colon-space-after": "always",
"indentation": 2,
"max-empty-lines": 2,
"rule-empty-line-before": [ "always", {
"except": ["first-nested"],
"ignore": ["after-comment"]
} ],
"unit-whitelist": ["em", "rem", "%", "s", "px", "vh", "vw", "deg", "fr"],
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["function", "if", "each", "include", "mixin", "at-root"]
}],
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["global", "local"]
}]
}
}