forked from mParticle/aquarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
30 lines (30 loc) · 880 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
28
29
30
{
"extends": ["stylelint-config-standard"],
"plugins": ["stylelint-no-indistinguishable-colors"],
"rules": {
"selector-class-pattern": null,
"block-no-empty": true,
"comment-no-empty": true,
"no-duplicate-selectors": true,
"selector-type-no-unknown": null,
"no-descending-specificity": null,
"media-feature-name-no-unknown": null,
"function-calc-no-unspaced-operator": true,
"declaration-block-single-line-max-declarations": 1,
"selector-type-case": "lower",
"rule-empty-line-before": [
"always-multi-line",
{
"ignore": ["first-nested", "after-comment"]
}
],
"property-no-unknown": [
true,
{
"severity": "warning"
}
],
"property-disallowed-list": [],
"unit-allowed-list": ["em", "rem", "s", "px", "%", "vw", "vh", "ms", "deg", "ch", "cm", "dpi", "fr"]
}
}