-
Notifications
You must be signed in to change notification settings - Fork 2
/
.stylelintrc.json
33 lines (33 loc) · 906 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
{
"extends": "stylelint-config-standard-scss",
"plugins": ["stylelint-scss"],
"rules": {
"scss/at-import-partial-extension": null,
"color-named": "always-where-possible",
"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": null,
"font-family-no-missing-generic-family-keyword": null,
"selector-class-pattern": null,
"property-no-unknown": [
true,
{
"ignoreProperties": ["/^lost-/"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
]
},
"ignoreFiles": ["node_modules/*", "src/assets/**", "build/**"],
"defaultSeverity": "error",
"customSyntax": "postcss-html"
}