-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
40 lines (40 loc) · 977 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", "stylelint-config-css-modules"],
"plugins": ["stylelint-config-rational-order/plugin"],
"rules": {
"max-nesting-depth": 2,
"indentation": null,
"selector-max-id": null,
"at-rule-no-unknown": null,
"function-parentheses-space-inside": "never-single-line",
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["value"]
}
],
"order/order": [
[
"custom-properties",
"dollar-variables",
{
"type": "at-rule",
"name": "extend"
},
"declarations",
"rules"
]
],
"order/properties-alphabetical-order": null,
"order/properties-order": [],
"plugin/rational-order": [
true,
{
"border-in-box-model": false,
"empty-line-between-groups": true
}
]
},
"ignoreFiles": ["node_modules/*", "public/*", ".cache/*"],
"defaultSeverity": "error"
}