-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
73 lines (72 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"extends": "stylelint-config-standard",
"plugins": [ ],
"rules": {
"no-eol-whitespace": null,
"indentation": 2,
"declaration-empty-line-before": null,
"declaration-colon-newline-after": null,
"value-list-comma-newline-after": null,
"value-keyword-case": null,
"no-invalid-double-slash-comments": null,
"no-descending-specificity": null,
"string-quotes": "double",
"selector-type-no-unknown": [
true, { ignoreTypes: ["ion-icon"] }
],
"block-closing-brace-newline-before": null,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"comment-empty-line-before": null,
"font-family-no-duplicate-names": null,
"font-family-no-missing-generic-family-keyword": null,
"comment-whitespace-inside": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"/^define-/",
"if",
"else",
"for",
"use",
"util",
"mixin",
"mixin-content",
"extend",
"each",
"map",
"include",
"component",
"modifier",
"descendent",
]
}
],
"property-no-unknown": [
true,
{
"ignoreProperties": [
"font-range",
"min-font-size",
"max-font-size",
"lower-font-range",
"upper-font-range",
"line-height-range",
"min-line-height",
"max-line-height",
"lower-line-height-range",
"upper-line-height-range",
"letter-spacing-range",
"min-letter-spacing",
"max-letter-spacing",
"lower-letter-spacing-range",
"upper-letter-spacing-range"
]
}
],
"number-leading-zero": null,
"length-zero-no-unit": null,
"unit-allowed-list": ["vw", "vh", "vmax", "vmin", "em", "rem", "s", "px", "%", "ms", "fr", "deg", "x", "dpi"],
}
}