-
Notifications
You must be signed in to change notification settings - Fork 5
/
.stylelintrc.json
44 lines (44 loc) · 957 Bytes
/
.stylelintrc.json
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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-sass-guidelines"
],
"rules": {
"indentation": 4,
"string-quotes": "double",
"max-empty-lines": 3,
"value-keyword-case": [
"lower",
{
"ignoreKeywords": ["BlinkMacSystemFont", "Roboto", "Helvetica", "Arial", "sans-serif"]
}
],
"scss/at-mixin-pattern": ".*",
"selector-class-pattern": [
".*",
{
"resolveNestedSelectors": true
}
],
"scss/percent-placeholder-pattern": ".*",
"selector-no-qualifying-type": [
true,
{
"ignore": ["attribute", "class", "id"]
}
],
"scss/at-function-pattern": ".*",
"selector-max-id": 1,
"max-nesting-depth": [
2,
{
"ignore": ["pseudo-classes"]
}
]
},
"ignoreFiles": [
"src/scss/vendor/include-media/**/*",
"src/scss/vendor/normalize/**/*",
"src/scss/vendor/purecss/**/*"
]
}