-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
32 lines (32 loc) · 1.12 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
{
"rules": {
"value-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"shorthand-property-no-redundant-values": true,
"function-url-quotes": "always",
"length-zero-no-unit": true,
"block-no-empty": true,
"number-leading-zero": "never",
"color-no-invalid-hex": true,
"number-no-trailing-zeros": true,
"max-nesting-depth": 5,
"max-line-length": 120,
"string-quotes": "single",
"keyframe-declaration-no-important": true,
"declaration-no-important": true,
"declaration-colon-space-after": "always",
"indentation": 4,
"max-empty-lines": 1,
"color-hex-length": "long",
"at-rule-semicolon-newline-after": "always",
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always",
"selector-type-case": "lower",
"property-case": "lower",
"value-keyword-case": "lower",
"unit-case": "lower",
"font-family-name-quotes": "always-where-recommended",
"color-hex-case": "lower",
"no-unknown-animations": true
}
}