forked from getkirby/getkirby.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
38 lines (35 loc) · 974 Bytes
/
.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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"rules": {
"number-leading-zero": "never",
"at-rule-no-unknown": null,
"selector-list-comma-newline-after": null,
"no-descending-specificity": null,
"selector-descendant-combinator-no-non-space": null,
"selector-attribute-quotes": "always",
"string-quotes": "double",
"function-url-quotes": "always",
"at-rule-empty-line-before": [
"always", {
"ignore": ["after-comment"],
"ignoreAtRules": [ "else", "import", "include" ],
}
],
"block-opening-brace-space-before": "always",
"block-closing-brace-newline-after": [
"always", {
"ignoreAtRules": [ "if", "else", "error", "warn", "info" ]
}
],
"at-rule-name-space-after": "always",
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true
}
}