forked from reposense/RepoSense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
29 lines (29 loc) · 859 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
{
"plugins": [
"stylelint-order"
],
"rules": {
"color-no-invalid-hex": true,
"string-no-newline": true,
"unit-no-unknown": true,
"property-no-unknown": true,
"block-no-empty": true,
"comment-no-empty": true,
"no-extra-semicolons": true,
"no-invalid-double-slash-comments": true,
"declaration-no-important": true,
"declaration-block-single-line-max-declarations": 1,
"number-leading-zero": "never",
"number-no-trailing-zeros": null,
"string-quotes": "single",
"length-zero-no-unit": true,
"value-keyword-case": "lower",
"property-case": "lower",
"declaration-colon-space-after": "always",
"selector-type-case": "lower",
"selector-list-comma-newline-after": "always",
"no-eol-whitespace": true,
"order/properties-alphabetical-order": true,
"indentation": 2
}
}