-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.stylelintrc
37 lines (37 loc) · 1.33 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
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-recess-order"
],
"rules": {
"indentation": 4,
"string-quotes": "double",
"color-hex-case": "lower",
"color-hex-length": "long",
"color-named": "never",
"no-descending-specificity": null,
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"selector-attribute-operator-space-before": "always",
"selector-attribute-operator-space-after": "always",
"selector-attribute-brackets-space-inside": "never",
"selector-id-pattern": null,
"selector-class-pattern": null,
"custom-property-pattern": null,
"keyframes-name-pattern": null,
"max-line-length": null,
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"rule-empty-line-before": "always-multi-line",
"selector-pseudo-class-parentheses-space-inside": "never",
"media-feature-range-operator-space-before": "never",
"media-feature-range-operator-space-after": "never",
"media-feature-parentheses-space-inside": "never",
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "always",
"no-duplicate-selectors": null,
"block-no-empty": null,
"font-family-no-missing-generic-family-keyword": null,
"no-irregular-whitespace": null
}
}