UNPKG

950 BJSONView Raw
1{
2 "stylelint": {
3 "rules": {
4 "string-quotes": ["single"],
5 "indentation": [
6 4,
7 {
8 "except": ["value"]
9 }
10 ],
11 "color-hex-case": ["upper"],
12 "color-hex-length": ["short"],
13 "block-no-empty": null,
14 "color-no-invalid-hex": true,
15 "comment-empty-line-before": [
16 "always",
17 {
18 "ignore": ["stylelint-commands", "after-comment"]
19 }
20 ],
21 "declaration-colon-space-after": ["always"],
22 "max-empty-lines": [2],
23 "rule-empty-line-before": [
24 "always",
25 {
26 "except": ["first-nested"],
27 "ignore": ["after-comment"]
28 }
29 ],
30 "unit-whitelist": ["em", "rem", "%", "s"]
31 }
32 }
33}