-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
.stylelintrc.json
114 lines (114 loc) · 3.64 KB
/
.stylelintrc.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended",
"stylelint-config-standard-scss"
],
"plugins": ["stylelint-order", "stylelint-scss"],
"rules": {
"no-descending-specificity": null,
"at-rule-empty-line-before": null,
"block-closing-brace-newline-after": null,
"block-closing-brace-newline-before": null,
"declaration-colon-newline-after": null,
"function-parentheses-newline-inside": null,
"selector-pseudo-class-no-unknown": [
true,
{ "ignorePseudoClasses": ["global", "local"] }
],
"value-list-comma-newline-after": null,
"indentation": null,
"function-calc-no-unspaced-operator": null,
"declaration-no-important": true,
"at-rule-disallowed-list": ["debug"],
"at-rule-no-unknown": null,
"at-rule-no-vendor-prefix": true,
"block-no-empty": true,
"block-opening-brace-space-before": null,
"max-empty-lines": null,
"color-hex-case": "lower",
"color-hex-length": "short",
"color-named": "never",
"color-no-invalid-hex": true,
"declaration-property-value-disallowed-list": {
"border": ["none"],
"border-top": ["none"],
"border-right": ["none"],
"border-bottom": ["none"],
"border-left": ["none"]
},
"length-zero-no-unit": null,
"max-nesting-depth": [
3,
{
"ignore": ["pseudo-classes"],
"ignoreAtRules": ["each", "media", "supports", "include"]
}
],
"media-feature-name-no-vendor-prefix": true,
"media-feature-parentheses-space-inside": "never",
"no-missing-end-of-source-newline": true,
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"order/order": [
[
"custom-properties",
"dollar-variables",
{
"type": "at-rule",
"name": "extend"
},
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
{
"type": "at-rule",
"name": "include",
"hasBlock": true
},
"declarations",
"rules"
]
],
"order/properties-alphabetical-order": true,
"property-no-unknown": true,
"property-no-vendor-prefix": true,
"scss/at-extend-no-missing-placeholder": true,
"scss/at-function-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
"scss/at-import-no-partial-leading-underscore": true,
"scss/at-import-partial-extension-blacklist": ["scss"],
"scss/at-mixin-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
"scss/at-rule-no-unknown": true,
"scss/dollar-variable-pattern": "^[_]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
"scss/percent-placeholder-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
"scss/selector-no-redundant-nesting-selector": true,
"scss/comment-no-empty": null,
"scss/at-if-no-null": null,
"scss/dollar-variable-empty-line-before": null,
"scss/operator-no-newline-after": null,
"scss/double-slash-comment-empty-line-before": null,
"selector-class-pattern": null,
"selector-max-compound-selectors": 8,
"selector-max-id": 0,
"selector-no-qualifying-type": [
true,
{
"ignore": ["attribute"]
}
],
"alpha-value-notation": null,
"selector-no-vendor-prefix": true,
"selector-pseudo-element-colon-notation": "double",
"selector-pseudo-element-no-unknown": true,
"shorthand-property-no-redundant-values": true,
"string-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"no-invalid-position-at-import-rule": null,
"color-function-notation": null,
"max-line-length": null,
"function-no-unknown": null,
"value-no-vendor-prefix": true
}
}