forked from leek-wars/leek-wars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
29 lines (29 loc) · 978 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
{
"ignoreFiles": "**/*.{ts,js}",
"processors": ["stylelint-processor-html"],
"extends": "stylelint-config-recommended",
"rules": {
"indentation": "tab",
"color-hex-case": "lower",
"no-descending-specificity": null,
"no-empty-source": null,
"font-family-no-missing-generic-family-keyword": null,
"selector-max-empty-lines": 0,
"rule-empty-line-before": "never",
"string-quotes": "double",
"selector-max-id": 1,
"selector-id-pattern": "^app",
"property-case": "lower",
"selector-type-case": "lower",
"value-keyword-case": "lower",
"block-opening-brace-space-before": "always",
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"block-closing-brace-newline-after": "always",
"no-eol-whitespace": true,
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-descendant-combinator-no-non-space": true,
"shorthand-property-no-redundant-values": true
}
}