-
Notifications
You must be signed in to change notification settings - Fork 4
/
.stylelintrc
40 lines (35 loc) · 1.04 KB
/
.stylelintrc
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
{
"root": true,
"customSyntax": "postcss-scss",
"extends": "stylelint-config-standard",
"overrides": [{
"customSyntax": "postcss-html",
"files": ["**/*.svelte"]
}],
"rules": {
"at-rule-no-unknown": [true, {
"ignoreAtRules": [
"at-root", "include", "use", "mixin", "function",
"content", "for", "each", "if", "else", "return"
]
}],
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["global", "export"]
}],
"no-invalid-position-at-import-rule": null,
"block-closing-brace-newline-after": null,
"declaration-empty-line-before": null,
"selector-no-qualifying-type": null,
"function-comma-space-after": null,
"comment-empty-line-before": null,
"at-rule-empty-line-before": null,
"number-no-trailing-zeros": null,
"color-function-notation": null,
"rule-empty-line-before": null,
"length-zero-no-unit": null,
"function-name-case": null,
"color-hex-length": null,
"import-notation": null,
"max-nesting-depth": 3
}
}