-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
40 lines (40 loc) · 861 Bytes
/
.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
35
36
37
38
39
40
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-a11y/recommended"
],
"plugins": [
"stylelint-a11y",
"stylelint-scss",
"stylelint-order"
],
"rules": {
"number-leading-zero": "never",
"a11y/font-size-is-readable": true,
"a11y/no-text-align-justify": true,
"a11y/no-obsolete-element": true,
"a11y/no-obsolete-attribute": true,
"a11y/content-property-no-static-value": true,
"value-keyword-case": ["lower", {
"ignoreProperties": ["left"]
}],
"order/properties-order": [
"top",
"bottom",
"right",
"left",
"width",
"height",
"margin",
"padding",
"color",
"text-align",
"text-decoration",
"font-size",
"font-weight",
"border",
"border-radius"
]
}
}