-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
42 lines (42 loc) · 1.05 KB
/
.stylelintrc
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
41
42
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
"plugins": [
"stylelint-order",
"stylelint-selector-no-empty",
"stylelint-declaration-block-no-ignored-properties",
"stylelint-scss"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
"plugin/stylelint-selector-no-empty": true,
"plugin/declaration-block-no-ignored-properties": true,
"csstools/use-nesting": "always",
"indentation": 4,
"declaration-colon-newline-after": null,
"value-keyword-case": [
"lower",
{
"ignoreKeywords": [
"dummyValue"
]
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"mixin",
"include",
"use"
]
}
],
"no-descending-specificity": null
}
}