-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
46 lines (44 loc) · 1.21 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
{
"plugins": [
"stylelint-scss"
],
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue",
"stylelint-config-recess-order",
"stylelint-prettier/recommended"
],
"customSyntax": "postcss-html",
"rules": {
"selector-class-pattern": "^[a-z0-9-]+(__[a-z0-9-]+)?(--[a-z0-9-]+)?$|^[a-z0-9-]+-enter-active$|^[a-z0-9-]+-leave-active$|^[a-z0-9-]+-[a-z0-9-]+$",
"prettier/prettier": true,
"scss/dollar-variable-pattern": "^var-",
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"order/properties-order": [
"position",
"top",
"right",
"bottom",
"left",
"z-index",
"display",
"flex",
"align-items",
"justify-content",
"width",
"height",
"margin",
"padding",
"font-family",
"font-size",
"font-weight",
"color",
"background",
"border",
"box-shadow"
],
"selector-no-vendor-prefix": true,
"selector-type-no-unknown": true
}
}