-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.stylelintrc
78 lines (78 loc) · 2.15 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
74
75
76
77
78
{
"extends": "stylelint-config-standard-scss",
"rules": {
"alpha-value-notation": "number",
"color-hex-length": "long",
"font-family-no-missing-generic-family-keyword": [
true,
{
"ignoreFontFamilies": ["/Material Icons/", "string"]
}
],
"property-no-unknown": [
true,
{
"ignoreProperties": [
"android-elevation",
"horizontal-align",
"selected-item-color",
"placeholder-color",
"un-selected-item-color"
]
}
],
"rule-empty-line-before": [
"always",
{
"ignore": [
"after-comment",
"inside-block"
]
}
],
"selector-class-pattern": "^(-?)([a-z][a-z0-9]*)(-{1,2}[a-z0-9]+)*(\\_{1,2}[a-z0-9]*)*(-{1,2}[a-z0-9]+)*$",
"selector-type-case": [
"lower",
{
"ignoreTypes": [
"ActionBar",
"Button",
"FlexboxLayout",
"GridLayout",
"Image",
"Label",
"ActivityIndicator",
"MDTabStrip",
"ScrollView",
"StackLayout",
"TextField",
"WrapLayout"
]
}
],
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"ActionBar",
"FlexboxLayout",
"GridLayout",
"ActivityIndicator",
"MDTabStrip",
"ScrollView",
"StackLayout",
"TextField",
"WrapLayout"
]
}
],
"value-keyword-case": [
"lower",
{
"ignoreKeywords": [
"/A[0-9]*/"
]
}
]
}
}