This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.stylelintrc
88 lines (88 loc) · 2.2 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"plugins": [
"stylelint-prettier",
"stylelint-scss",
"stylelint-order",
"stylelint-config-rational-order/plugin"
],
"extends": [
"stylelint-config-recommended-scss",
"stylelint-prettier/recommended",
"stylelint-config-rational-order"
],
"rules": {
"order/properties-order": [],
"plugin/rational-order": [true],
"prettier/prettier": true,
"selector-max-compound-selectors": 3,
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"property-no-vendor-prefix": [
true,
{
"ignoreProperties": ["box-orient"]
}
],
"value-no-vendor-prefix": [
true,
{
"ignoreValues": ["box"]
}
],
"unit-no-unknown": [
true,
{
"ignoreUnits": ["rpx"]
}
],
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"view",
"/^\\w*-view$/",
"page",
"text",
"icon",
"progress",
"checkbox",
"input",
"radio",
"slider",
"switch",
"audio",
"image",
"video",
"camera",
"live-player",
"live-pusher",
"map",
"canvas",
"open-data",
"official-account",
"swiper",
"navigator"
]
}
]
},
"ignoreFiles": [
"**/*.wxml",
"dist/",
"node_modules/",
"**/*.ts",
"**/*.js",
"**/*.wxts",
"**/*.wxs",
"**/*.jsonc",
"**/*.json5",
"**/*.json",
"**/*.dtpl",
"**/*.jpg",
"**/*.jpeg",
"**/*.png",
"**/*.svg",
"**/*.gif"
]
}