generated from philhawksworth/eleventyone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc
34 lines (34 loc) · 1.1 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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["neat-outer-container", "neat-span-columns"]
}],
"at-rule-empty-line-before": null,
"block-opening-brace-space-before": "always",
"color-hex-case": "lower",
"comment-empty-line-before": null,
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-trailing-semicolon": "always",
"declaration-colon-newline-after": null,
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always-single-line",
"declaration-empty-line-before": null,
"function-url-quotes": "always",
"no-descending-specificity": null,
"no-invalid-double-slash-comments": true,
"number-leading-zero": "always",
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true,
"selector-attribute-quotes": "always",
"selector-list-comma-newline-after": null,
"string-quotes": "double",
"value-list-comma-newline-after": null
}
}