-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
27 lines (27 loc) · 1001 Bytes
/
.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
{
"rules": {
"color-no-invalid-hex": true,
"no-browser-hacks": true,
"no-descending-specificity": null,
"no-unsupported-browser-features": [ true, {
"severity": "warning",
"browsers": "last 2 versions, Firefox ESR, IE >= 9"
} ],
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"length-zero-no-unit": true,
"string-no-newline": true,
"time-no-imperceptible": true,
"value-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"at-rule-no-vendor-prefix": true,
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always-single-line",
"max-empty-lines": 1,
"indentation": null,
"no-missing-end-of-source-newline": true,
"max-nesting-depth": 3
}
}