-
Notifications
You must be signed in to change notification settings - Fork 21
/
.stylelintrc
38 lines (38 loc) · 1 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
33
34
35
36
37
38
{
"formatter": "verbose",
"fix": true,
"extends": [
"stylelint-config-property-sort-order-smacss",
"stylelint-config-standard"
],
"verbose": true,
"rules": {
"alpha-value-notation": "number",
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["/^.*mixin/", "custom-media"]
}
],
"color-no-hex": true,
"color-function-notation": null,
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"custom-property-pattern": null,
"declaration-block-single-line-max-declarations": 1,
"font-weight-notation": "numeric",
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"number-max-precision": 5,
"property-no-unknown": [true, { "ignoreProperties": ["container-type"] }],
"selector-class-pattern": null,
"selector-id-pattern": null,
"value-keyword-case": [
"lower",
{
"ignoreProperties": [ "/.*font.*/" ]
}
],
"unit-disallowed-list": ["px", "ms"]
}
}