forked from mattlogic6/mallen5e.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
40 lines (40 loc) · 820 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
37
38
39
40
{
"extends": "stylelint-config-sass-guidelines",
"rules": {
"indentation": "tab",
"order/properties-order": [
"position",
"z-index",
"top",
"right",
"bottom",
"left",
"margin",
"margin-top",
"margin-right",
"margin-bottom",
"margin-left",
"padding",
"padding-top",
"padding-right",
"padding-bottom",
"padding-left"
],
"order/properties-alphabetical-order": null,
"color-named": "always-where-possible",
"string-quotes": "double",
"selector-no-qualifying-type": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-class-pattern": null,
"max-nesting-depth": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-pattern": null,
"function-url-quotes": [
"always",
{
"except": ["empty"]
}
]
}
}