forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.stylelintrc.json
26 lines (26 loc) · 933 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
{
"extends": ["stylelint-config-standard", "stylelint-config-rational-order", "stylelint-config-prettier"],
"plugins": ["stylelint-order", "stylelint-scss"],
"rules": {
"indentation": "tab",
"order/order": ["dollar-variables", "custom-properties", "declarations", "at-variables", "rules"],
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["deep", "slotted", "global"]
}
],
"string-quotes": "single",
"length-zero-no-unit": null,
"no-descending-specificity": true,
"rule-empty-line-before": ["always", { "except": "first-nested" }],
"block-closing-brace-empty-line-before": "never",
"block-opening-brace-newline-after": "always-multi-line",
"alpha-value-notation": "number",
"selector-class-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"color-function-notation": null
}
}