forked from ca0v/enterprise-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
42 lines (42 loc) · 1.14 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
{
"plugins": [
"stylelint-scss"
],
"extends": ["stylelint-config-standard-scss"],
"ignoreFiles": ["**/*.js", "**/*.md", "**/*.MD", "**/*.html"],
"rules": {
"at-rule-no-unknown": [true, {
"ignoreAtRules": [
"each",
"for",
"if",
"error",
"include",
"mixin",
"use"
]
}],
"max-nesting-depth": [4, {
"ignore": ["pseudo-classes"]
}],
"no-descending-specificity": null,
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["root", "host", "unresolved", "part", "::part"]
}],
"selector-pseudo-element-no-unknown": [true, {
"ignorePseudoElements": ["root", "host", "unresolved", "part", "::part"]
}],
"selector-type-no-unknown": [true, {
"ignore": ["custom-elements"]
}],
"selector-not-notation": null,
"import-notation": null,
"scss/at-mixin-argumentless-call-parentheses": null,
"scss/dollar-variable-empty-line-before": null,
"alpha-value-notation": "number",
"keyframes-name-pattern": null,
"value-keyword-case": ["lower", {
"ignoreKeywords": ["currentColor"]
}]
}
}