-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
.stylelintrc.json
34 lines (34 loc) · 1.1 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
34
{
"extends": ["stylelint-config-standard"],
"reportDescriptionlessDisables": true,
"reportInvalidScopeDisables": true,
"reportNeedlessDisables": true,
"plugins": [
"stylelint-csstree-validator",
"stylelint-declaration-block-no-ignored-properties",
"stylelint-no-unsupported-browser-features",
"stylelint-order"
],
"rules": {
"color-named": "never",
"declaration-property-value-no-unknown": true,
"font-weight-notation": "named-where-possible",
"function-url-no-scheme-relative": true,
"media-feature-name-value-no-unknown": true,
"media-feature-range-notation": "prefix",
"no-descending-specificity": null,
"no-unknown-animations": true,
"no-unknown-custom-properties": true,
"number-max-precision": 5,
"property-no-unknown": [true, {"checkPrefixed": true}],
"time-min-milliseconds": 100,
"csstree/validator": true,
"order/properties-alphabetical-order": true,
"plugin/declaration-block-no-ignored-properties": true,
"plugin/no-unsupported-browser-features": [true, {
"ignore": [
"css-overflow"
]
}]
}
}