-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
51 lines (51 loc) · 1.1 KB
/
.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
45
46
47
48
49
50
51
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss"
],
"rules": {
"alpha-value-notation": "number",
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"else",
"for",
"forward",
"function",
"if",
"include",
"mixin",
"return",
"use"
]
}
],
"color-function-notation": "modern",
"function-no-unknown": [
true,
{
"ignoreFunctions": [
"darken",
"lighten",
"math.div",
"percentage"
]
}
],
"import-notation": null,
"media-query-no-invalid": null,
"no-descending-specificity": null,
"no-invalid-double-slash-comments": true,
"scss/at-import-no-partial-leading-underscore": null,
"scss/at-import-partial-extension-blacklist": null,
"selector-class-pattern": "^[a-z0-9\\-]+$",
"selector-id-pattern": [
"^[a-z0-9\\-]+$",
{
"resolveNestedSelectors": true,
"ignore": ["^#__next$", "^\\s+#[a-zA-Z0-9\\-_]+$"]
}
]
}
}