-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
49 lines (47 loc) · 1.83 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"rules": {
"indentation": "tab",
"linebreaks": "unix",
"no-eol-whitespace": true,
"max-empty-lines": 2,
"no-missing-end-of-source-newline": true,
"no-empty-first-line": true,
"color-no-invalid-hex": true,
"font-family-no-duplicate-names": true,
"font-family-no-missing-generic-family-keyword": true,
"function-calc-no-invalid": true,
"function-calc-no-unspaced-operator": true,
"function-linear-gradient-no-nonstandard-direction": true,
"string-no-newline": true,
"unit-no-unknown": true,
"property-no-unknown": true,
"keyframe-declaration-no-important": true,
"declaration-block-no-duplicate-properties": true,
"block-no-empty": true,
"media-feature-name-no-unknown": true,
"comment-no-empty": true,
"no-duplicate-at-import-rules": true,
"no-extra-semicolons": true,
"shorthand-property-no-redundant-values": true,
"declaration-block-single-line-max-declarations": 1,
"selector-max-empty-lines": 0,
"no-unknown-animations": true,
"color-hex-case": "lower",
"color-hex-length": "short",
"font-family-name-quotes": "always-unless-keyword",
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"string-quotes": "double",
"length-zero-no-unit": true,
"unit-case": "lower",
"value-keyword-case": "lower",
"value-list-comma-space-after": "always",
"value-list-comma-space-before": "never",
"value-list-max-empty-lines": 0,
"property-case": "lower",
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always",
"at-rule-semicolon-newline-after": "always",
"at-rule-semicolon-space-before": "never"
}
}