-
Notifications
You must be signed in to change notification settings - Fork 355
/
.stylelintrc
74 lines (74 loc) · 1.66 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
71
72
73
74
{
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"severity": "warning"
}
],
"scss/double-slash-comment-whitespace-inside": null,
"block-no-empty": null,
"block-opening-brace-newline-after": "always",
"color-named": "never",
"custom-property-empty-line-before": "never",
"declaration-block-semicolon-newline-after": "always",
"declaration-block-trailing-semicolon": "always",
"font-family-name-quotes": "always-where-recommended",
"font-weight-notation": null,
"function-url-quotes": "always",
"indentation": [
2,
{
"indentInsideParens": "once-at-root-twice-in-block"
}
],
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"no-empty-source": [
true,
{
"severity": "warning"
}
],
"property-no-unknown": [
true,
{
"ignoreProperties": [
"composes",
"all",
"-webkit-appearance"
]
}
],
"scss/at-rule-no-unknown": true,
"selector-attribute-quotes": "always",
"selector-max-specificity": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"local",
"global"
]
}
],
"selector-pseudo-element-colon-notation": null,
"selector-type-no-unknown": [
true,
{
"ignore": [
"custom-elements"
]
}
],
"string-quotes": "double",
"value-list-comma-newline-before": "never-multi-line",
"value-no-vendor-prefix": null
}
}