-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc.json
56 lines (56 loc) · 1.49 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"extends": [
"stylelint-config-standard",
"stylelint-config-rational-order"
],
"rules": {
"order/order": [
[
{
"type": "at-rule",
"name": "import"
},
"dollar-variables",
"at-variables",
"custom-properties",
"at-rules",
"declarations",
{
"type": "at-rule",
"name": "supports"
},
{
"type": "at-rule",
"name": "media"
},
"rules"
],
{
"severity": "warning"
}
],
"no-invalid-double-slash-comments": null,
"no-descending-specificity": null,
"no-empty-source": null,
"property-no-vendor-prefix": [true, { "ignoreProperties": [
"background-clip",
"box-orient"
] }],
"number-leading-zero": "never",
"number-no-trailing-zeros": true,
"value-list-comma-space-after": "always",
"declaration-colon-space-after": "always",
"value-list-max-empty-lines": 0,
"shorthand-property-no-redundant-values": true,
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-redundant-longhand-properties": true,
"declaration-block-semicolon-newline-after": "always",
"block-closing-brace-newline-after": "always",
"media-feature-colon-space-after": "always",
"media-feature-range-operator-space-after": "always",
"at-rule-name-space-after": "always",
"indentation": 2,
"no-eol-whitespace": true,
"string-no-newline": null
}
}