-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
59 lines (59 loc) · 2.11 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
{
"rules": {
"at-rule-name-case": "lower",
"at-rule-no-vendor-prefix": true,
"color-hex-case": "lower",
"color-named": "never",
"color-no-invalid-hex": true,
"comment-whitespace-inside": "always",
"comment-no-empty": true,
"block-no-empty": true,
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-no-duplicate-custom-properties": true,
"declaration-block-no-duplicate-properties": true,
"declaration-block-trailing-semicolon": "always",
"declaration-block-semicolon-newline-after": "always",
"declaration-no-important": true,
"font-family-name-quotes": "always-where-recommended",
"font-weight-notation": "named-where-possible",
"function-name-case": "lower",
"function-calc-no-invalid": true,
"function-calc-no-unspaced-operator": true,
"function-url-quotes": "always",
"length-zero-no-unit": true,
"max-empty-lines": 1,
"max-nesting-depth": 3,
"media-feature-name-case": "lower",
"media-feature-name-no-vendor-prefix": true,
"number-leading-zero": "always",
"no-extra-semicolons": true,
"no-empty-first-line": true,
"no-invalid-double-slash-comments": true,
"no-invalid-position-at-import-rule": true,
"order/properties-alphabetical-order": true,
"property-case": "lower",
"property-no-vendor-prefix": true,
"property-no-unknown": true,
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-max-id": 1,
"selector-max-universal": 1,
"selector-no-vendor-prefix": true,
"selector-pseudo-class-case": "lower",
"selector-pseudo-element-case": "lower",
"selector-pseudo-element-colon-notation": "single",
"selector-type-case": "lower",
"unit-case": "lower",
"unit-no-unknown": true,
"value-keyword-case": "lower",
"value-no-vendor-prefix": true,
"no-empty-source": null
},
"plugins":
[
"stylelint-order"
],
"extends": ["stylelint-config-standard","stylelint-config-sass-guidelines"]
}