-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
70 lines (70 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
{
"extends": "stylelint-config-standard-scss",
"rules": {
"max-line-length": null,
"block-no-empty": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always",
{
"ignore": [
"stylelint-commands",
"after-comment"
]
}
],
"declaration-colon-space-after": "always",
"indentation": [
4,
{
"except": [
"value"
]
}
],
"max-empty-lines": 2,
"rule-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"unit-allowed-list": [
"px",
"em",
"rem",
"%",
"s",
"deg",
"fr",
"vw",
"vh"
],
"at-rule-allowed-list": [
"media",
"mixin",
"content",
"font-face",
"include",
"keyframes",
"import"
],
"scss/at-import-no-partial-leading-underscore": null,
"scss/at-import-partial-extension": "always",
"selector-pseudo-element-colon-notation": "single",
"no-descending-specificity": null,
"color-function-notation": null,
"alpha-value-notation": "number",
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"font-family-no-missing-generic-family-keyword": null,
"font-family-name-quotes": null,
"scss/no-global-function-names": null
}
}