-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy path.stylelintrc
57 lines (56 loc) · 1.41 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
{
"extends": "stylelint-config-standard",
"customSyntax": "postcss-scss",
"plugins": [
"stylelint-scss"
],
"rules": {
"indentation": 4,
"color-hex-case": "lower",
"no-missing-end-of-source-newline": true,
"selector-class-pattern": "",
"property-no-unknown": [
true,
{
"severity": "warning",
"ignoreProperties": [
"user-focus",
"user-input",
"user-modify"
]
}
],
"no-descending-specificity": null,
"max-nesting-depth": [
3,
{
"ignore": [
"blockless-at-rules",
"pseudo-classes"
],
"severity": "warning"
}
],
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"font-family-no-missing-generic-family-keyword": null,
"max-line-length": [
200,
{
"ignore": [
"comments",
"non-comments"
]
}
],
"block-no-empty": null,
"function-no-unknown": [
true,
{
"ignoreFunctions": [
"-webkit-named-image"
]
}
]
},
}