-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
.stylelintrc
47 lines (47 loc) · 1.28 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
{
"extends": "stylelint-config-recommended-scss",
"rules": {
"color-no-invalid-hex": true,
"font-family-no-duplicate-names": true,
"function-calc-no-unspaced-operator": true,
"function-linear-gradient-no-nonstandard-direction": true,
"unit-no-unknown": true,
"shorthand-property-no-redundant-values": true,
"keyframe-declaration-no-important": true,
"block-no-empty": true,
"at-rule-no-unknown": null,
"no-unknown-animations": null,
"no-empty-source": null,
"declaration-block-single-line-max-declarations": 1,
"color-hex-length": "short",
"function-url-quotes": "always",
"length-zero-no-unit": true,
"value-keyword-case": "lower",
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null,
"scss/comment-no-empty": null,
"at-rule-empty-line-before": [
"always", {
"ignore": ["after-comment"],
"ignoreAtRules": [
"if",
"else",
"else if",
"return",
"warn",
"for",
"import",
"mixin",
"extend",
"include",
"media",
"content",
"keyframes",
"-ms-keyframes",
"-moz-keyframes",
"-webkit-keyframes"
]
}
]
}
}