-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
27 lines (27 loc) · 972 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
27
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-vendor-prefix": true,
"color-hex-case": "upper",
"color-named": "never",
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"declaration-no-important": true,
"selector-max-id": 0,
"selector-max-class": 3,
"selector-max-combinators": 2,
"selector-max-attribute": 1,
"selector-max-type": 1,
"selector-max-universal": 1,
"selector-type-no-unknown": [true, {
"ignoreTypes": ["/^md-/"]
}],
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["function", "if", "ignores", "include", "extend", "mixin", "content", "supports"]
}],
"indentation": 2,
"number-leading-zero": null,
"unit-whitelist": ["em", "rem", "s", "ms", "vh", "vw", "deg", "px", "%", "in", "dpcm"]
}
}