forked from Accuraty/AccuTheme-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
36 lines (36 loc) · 860 Bytes
/
.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
{
"extends": [
"stylelint-config-twbs-bootstrap/scss"
],
"defaultSeverity": "warning",
"rules": {
"block-no-empty": null,
"declaration-no-important": null,
"font-family-no-missing-generic-family-keyword": null,
"max-empty-lines": 4,
"order/properties-order": null,
"selector-class-pattern": null,
"selector-max-id": 1,
"selector-max-type": [
4,
{
"ignore": [
"next-sibling"
],
"message": "Are you sure you need that many selectors?"
}
],
"selector-no-qualifying-type": [
true,
{
"ignore": [
"attribute",
"class"
]
}
],
"value-list-comma-newline-after": "always-multi-line",
"value-list-comma-space-after": "always-single-line",
"scss/selector-no-redundant-nesting-selector": null
}
}