-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
39 lines (39 loc) · 1.12 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
{
"extends": [
"stylelint-config-html",
"stylelint-prettier",
"stylelint-prettier/recommended",
"stylelint-config-recommended-scss"
],
"rules": {
"prettier/prettier": true,
"font-family-name-quotes": "always-where-required",
"font-weight-notation": "named-where-possible",
"function-url-no-scheme-relative": true,
"function-url-quotes": "always",
"value-keyword-case": "lower",
"unit-disallowed-list": [],
"no-descending-specificity": true,
"no-duplicate-selectors": true,
"font-family-no-missing-generic-family-keyword": null,
"property-no-unknown": [
true,
{
"ignoreProperties": ["/^lost-/"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{ "ignorePseudoClasses": ["global"] }
]
},
"ignoreFiles": ["node_modules/*"],
"defaultSeverity": "error",
"customSyntax": "postcss-html",
"overrides": [
{
"files": ["*.js"],
"customSyntax": "postcss-lit"
}
]
}