-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.stylelintrc
40 lines (40 loc) · 1.31 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
{
"extends": "stylelint-config-standard",
"rules": {
"alpha-value-notation": null,
"at-rule-no-vendor-prefix": null,
"block-closing-brace-empty-line-before": "never",
"block-no-empty": true,
"color-hex-case": null,
"color-hex-length": null,
"color-function-notation": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [ "always", {
"ignore": ["stylelint-commands", "after-comment"]
} ],
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-after": [ "always-single-line", {
"severity": "warning"
} ],
"font-family-no-missing-generic-family-keyword": null,
"indentation": "tab",
"keyframes-name-pattern": null,
"length-zero-no-unit": null,
"max-empty-lines": 2,
"max-line-length": null,
"no-descending-specificity": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": [ "always", {
"except": ["first-nested"],
"ignore": ["after-comment"]
} ],
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-max-empty-lines": 1,
"selector-no-vendor-prefix": null,
"shorthand-property-no-redundant-values": null,
"value-keyword-case": null,
"value-no-vendor-prefix": null
}
}