forked from neos/Neos.NeosIo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
39 lines (39 loc) · 839 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
31
32
33
34
35
36
37
38
39
{
"extends": "stylelint-config-recommended-scss",
"ignoreFiles": [
"**/Public/**",
"**/Private/Templates/**",
"node_modules/**",
"**/*.noLinter.*"
],
"rules": {
"property-no-unknown": [
true,
{
"ignoreProperties": [
"font-range",
"min-font-size",
"max-font-size",
"lower-font-range",
"upper-font-range",
"font-awesome",
"tap-highlight-color",
"touch-callout"
]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["at-least", "at-most", "between", "exactly"]
}
],
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": ["track", "thumb"]
}
],
"selector-type-no-unknown": null
}
}