-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
62 lines (62 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"mixin",
"extends",
"ignores",
"include",
"for",
"use"
]
}
],
"indentation": "tab",
"number-leading-zero": null,
"unit-whitelist": [
"em",
"rem",
"deg",
"px",
"%",
"s",
"vw",
"vh",
"ms"
],
"max-empty-lines": null,
"block-closing-brace-newline-before": "always-multi-line",
"block-closing-brace-space-before": "always-single-line",
"color-no-invalid-hex": true,
"comment-no-empty": true,
"unit-case": "lower",
"unit-no-unknown": true,
"selector-attribute-quotes": "always",
"string-quotes": "single",
"max-nesting-depth": 6,
"selector-max-compound-selectors": 6,
"declaration-no-important": null,
"selector-class-pattern": "[a-z-]+",
"selector-id-pattern": "[a-z-]+",
"font-family-no-duplicate-names": true,
"string-no-newline": true,
"property-no-unknown": null,
"selector-type-no-unknown": null,
"no-descending-specificity": null,
"declaration-block-no-duplicate-properties": null,
"no-empty-source": null,
"no-duplicate-selectors": null,
"font-family-no-missing-generic-family-keyword": null,
"number-no-trailing-zeros": true,
"no-eol-whitespace": null,
"length-zero-no-unit": true,
"block-opening-brace-newline-before": null,
"block-opening-brace-space-before": "always",
"declaration-bang-space-after": null,
"declaration-bang-space-before": "always",
"declaration-block-no-shorthand-property-overrides": null
}
}