@deot/dev-stylelint 2.9.8 → 2.9.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.cjs +214 -225
  2. package/dist/index.js +210 -221
  3. package/package.json +5 -5
package/dist/index.cjs CHANGED
@@ -1,228 +1,217 @@
1
- 'use strict';
2
-
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
-
5
- const configure = async () => {
6
- return {
7
- plugins: ["stylelint-order", "@stylistic/stylelint-plugin"],
8
- extends: ["stylelint-config-standard-scss", "stylelint-config-recommended-vue/scss"],
9
- rules: {
10
- "at-rule-no-unknown": [
11
- true,
12
- {
13
- ignoreAtRules: [
14
- "use",
15
- "forward",
16
- "for",
17
- "function",
18
- "if",
19
- "each",
20
- "include",
21
- "mixin",
22
- "at-root",
23
- "else",
24
- "extend",
25
- "return",
26
- "debug",
27
- "while",
28
- "error"
29
- ]
30
- }
31
- ],
32
- "no-empty-source": null,
33
- "no-descending-specificity": null,
34
- "nesting-selector-no-missing-scoping-root": null,
35
- "block-no-redundant-nested-style-rules": null,
36
- "block-no-empty": null,
37
- "selector-class-pattern": "[a-zA-Z0-9_-]+",
38
- "selector-pseudo-class-no-unknown": [
39
- true,
40
- {
41
- ignorePseudoClasses: ["global"]
42
- }
43
- ],
44
- "named-grid-areas-no-invalid": null,
45
- "font-family-no-missing-generic-family-keyword": null,
46
- "rule-empty-line-before": [
47
- "always",
48
- {
49
- ignore: ["after-comment", "first-nested"]
50
- }
51
- ],
52
- "function-no-unknown": null,
53
- "unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
54
- // scss
55
- "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
56
- // stylistic
57
- "@stylistic/indentation": "tab",
58
- "@stylistic/declaration-colon-space-after": "always-single-line",
59
- "@stylistic/declaration-colon-space-before": "never",
60
- "@stylistic/declaration-block-trailing-semicolon": "always",
61
- // Specify the alphabetical order of the attributes in the declaration block
62
- "order/properties-order": [
63
- "position",
64
- "top",
65
- "right",
66
- "bottom",
67
- "left",
68
- "z-index",
69
- "display",
70
- "float",
71
- "width",
72
- "height",
73
- "max-width",
74
- "max-height",
75
- "min-width",
76
- "min-height",
77
- "padding",
78
- "padding-top",
79
- "padding-right",
80
- "padding-bottom",
81
- "padding-left",
82
- "margin",
83
- "margin-top",
84
- "margin-right",
85
- "margin-bottom",
86
- "margin-left",
87
- "margin-collapse",
88
- "margin-top-collapse",
89
- "margin-right-collapse",
90
- "margin-bottom-collapse",
91
- "margin-left-collapse",
92
- "overflow",
93
- "overflow-x",
94
- "overflow-y",
95
- "clip",
96
- "clear",
97
- "font",
98
- "font-family",
99
- "font-size",
100
- "font-smoothing",
101
- "osx-font-smoothing",
102
- "font-style",
103
- "font-weight",
104
- "hyphens",
105
- "src",
106
- "line-height",
107
- "letter-spacing",
108
- "word-spacing",
109
- "color",
110
- "text-align",
111
- "text-decoration",
112
- "text-indent",
113
- "text-overflow",
114
- "text-rendering",
115
- "text-size-adjust",
116
- "text-shadow",
117
- "text-transform",
118
- "word-break",
119
- "word-wrap",
120
- "white-space",
121
- "vertical-align",
122
- "list-style",
123
- "list-style-type",
124
- "list-style-position",
125
- "list-style-image",
126
- "pointer-events",
127
- "cursor",
128
- "background",
129
- "background-attachment",
130
- "background-color",
131
- "background-image",
132
- "background-position",
133
- "background-repeat",
134
- "background-size",
135
- "border",
136
- "border-collapse",
137
- "border-top",
138
- "border-right",
139
- "border-bottom",
140
- "border-left",
141
- "border-color",
142
- "border-image",
143
- "border-top-color",
144
- "border-right-color",
145
- "border-bottom-color",
146
- "border-left-color",
147
- "border-spacing",
148
- "border-style",
149
- "border-top-style",
150
- "border-right-style",
151
- "border-bottom-style",
152
- "border-left-style",
153
- "border-width",
154
- "border-top-width",
155
- "border-right-width",
156
- "border-bottom-width",
157
- "border-left-width",
158
- "border-radius",
159
- "border-top-right-radius",
160
- "border-bottom-right-radius",
161
- "border-bottom-left-radius",
162
- "border-top-left-radius",
163
- "border-radius-topright",
164
- "border-radius-bottomright",
165
- "border-radius-bottomleft",
166
- "border-radius-topleft",
167
- "content",
168
- "quotes",
169
- "outline",
170
- "outline-offset",
171
- "opacity",
172
- "filter",
173
- "visibility",
174
- "size",
175
- "zoom",
176
- "transform",
177
- "box-align",
178
- "box-flex",
179
- "box-orient",
180
- "box-pack",
181
- "box-shadow",
182
- "box-sizing",
183
- "table-layout",
184
- "animation",
185
- "animation-delay",
186
- "animation-duration",
187
- "animation-iteration-count",
188
- "animation-name",
189
- "animation-play-state",
190
- "animation-timing-function",
191
- "animation-fill-mode",
192
- "transition",
193
- "transition-delay",
194
- "transition-duration",
195
- "transition-property",
196
- "transition-timing-function",
197
- "background-clip",
198
- "backface-visibility",
199
- "resize",
200
- "appearance",
201
- "user-select",
202
- "interpolation-mode",
203
- "direction",
204
- "marks",
205
- "page",
206
- "set-link-source",
207
- "unicode-bidi",
208
- "speak"
209
- ]
210
- },
211
- ignoreFiles: [
212
- "**/node_modules/**",
213
- "**/dist/**",
214
- "**/temp/**",
215
- "**/tmp/**",
216
- "**/coverage/**",
217
- "**/*.js",
218
- "**/*.ts",
219
- "**/*.tsx",
220
- "**/*.jsx"
221
- ]
222
- };
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ //#region packages/stylelint/src/configure.ts
6
+ /**
7
+ * 导出一个可配置的stylelint配置项
8
+ * 1. async方便扩展(可以像@deot/dev-eslint)
9
+ * @returns 配置项(Promise)
10
+ */
11
+ var configure = async () => {
12
+ return {
13
+ plugins: ["stylelint-order", "@stylistic/stylelint-plugin"],
14
+ extends: ["stylelint-config-standard-scss", "stylelint-config-recommended-vue/scss"],
15
+ rules: {
16
+ "at-rule-no-unknown": [true, { ignoreAtRules: [
17
+ "use",
18
+ "forward",
19
+ "for",
20
+ "function",
21
+ "if",
22
+ "each",
23
+ "include",
24
+ "mixin",
25
+ "at-root",
26
+ "else",
27
+ "extend",
28
+ "return",
29
+ "debug",
30
+ "while",
31
+ "error"
32
+ ] }],
33
+ "no-empty-source": null,
34
+ "no-descending-specificity": null,
35
+ "nesting-selector-no-missing-scoping-root": null,
36
+ "block-no-redundant-nested-style-rules": null,
37
+ "block-no-empty": null,
38
+ "selector-class-pattern": "[a-zA-Z0-9_-]+",
39
+ "selector-pseudo-class-no-unknown": [true, { ignorePseudoClasses: ["global"] }],
40
+ "named-grid-areas-no-invalid": null,
41
+ "font-family-no-missing-generic-family-keyword": null,
42
+ "rule-empty-line-before": ["always", { ignore: ["after-comment", "first-nested"] }],
43
+ "function-no-unknown": null,
44
+ "unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
45
+ "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
46
+ "@stylistic/indentation": "tab",
47
+ "@stylistic/declaration-colon-space-after": "always-single-line",
48
+ "@stylistic/declaration-colon-space-before": "never",
49
+ "@stylistic/declaration-block-trailing-semicolon": "always",
50
+ "order/properties-order": [
51
+ "position",
52
+ "top",
53
+ "right",
54
+ "bottom",
55
+ "left",
56
+ "z-index",
57
+ "display",
58
+ "float",
59
+ "width",
60
+ "height",
61
+ "max-width",
62
+ "max-height",
63
+ "min-width",
64
+ "min-height",
65
+ "padding",
66
+ "padding-top",
67
+ "padding-right",
68
+ "padding-bottom",
69
+ "padding-left",
70
+ "margin",
71
+ "margin-top",
72
+ "margin-right",
73
+ "margin-bottom",
74
+ "margin-left",
75
+ "margin-collapse",
76
+ "margin-top-collapse",
77
+ "margin-right-collapse",
78
+ "margin-bottom-collapse",
79
+ "margin-left-collapse",
80
+ "overflow",
81
+ "overflow-x",
82
+ "overflow-y",
83
+ "clip",
84
+ "clear",
85
+ "font",
86
+ "font-family",
87
+ "font-size",
88
+ "font-smoothing",
89
+ "osx-font-smoothing",
90
+ "font-style",
91
+ "font-weight",
92
+ "hyphens",
93
+ "src",
94
+ "line-height",
95
+ "letter-spacing",
96
+ "word-spacing",
97
+ "color",
98
+ "text-align",
99
+ "text-decoration",
100
+ "text-indent",
101
+ "text-overflow",
102
+ "text-rendering",
103
+ "text-size-adjust",
104
+ "text-shadow",
105
+ "text-transform",
106
+ "word-break",
107
+ "word-wrap",
108
+ "white-space",
109
+ "vertical-align",
110
+ "list-style",
111
+ "list-style-type",
112
+ "list-style-position",
113
+ "list-style-image",
114
+ "pointer-events",
115
+ "cursor",
116
+ "background",
117
+ "background-attachment",
118
+ "background-color",
119
+ "background-image",
120
+ "background-position",
121
+ "background-repeat",
122
+ "background-size",
123
+ "border",
124
+ "border-collapse",
125
+ "border-top",
126
+ "border-right",
127
+ "border-bottom",
128
+ "border-left",
129
+ "border-color",
130
+ "border-image",
131
+ "border-top-color",
132
+ "border-right-color",
133
+ "border-bottom-color",
134
+ "border-left-color",
135
+ "border-spacing",
136
+ "border-style",
137
+ "border-top-style",
138
+ "border-right-style",
139
+ "border-bottom-style",
140
+ "border-left-style",
141
+ "border-width",
142
+ "border-top-width",
143
+ "border-right-width",
144
+ "border-bottom-width",
145
+ "border-left-width",
146
+ "border-radius",
147
+ "border-top-right-radius",
148
+ "border-bottom-right-radius",
149
+ "border-bottom-left-radius",
150
+ "border-top-left-radius",
151
+ "border-radius-topright",
152
+ "border-radius-bottomright",
153
+ "border-radius-bottomleft",
154
+ "border-radius-topleft",
155
+ "content",
156
+ "quotes",
157
+ "outline",
158
+ "outline-offset",
159
+ "opacity",
160
+ "filter",
161
+ "visibility",
162
+ "size",
163
+ "zoom",
164
+ "transform",
165
+ "box-align",
166
+ "box-flex",
167
+ "box-orient",
168
+ "box-pack",
169
+ "box-shadow",
170
+ "box-sizing",
171
+ "table-layout",
172
+ "animation",
173
+ "animation-delay",
174
+ "animation-duration",
175
+ "animation-iteration-count",
176
+ "animation-name",
177
+ "animation-play-state",
178
+ "animation-timing-function",
179
+ "animation-fill-mode",
180
+ "transition",
181
+ "transition-delay",
182
+ "transition-duration",
183
+ "transition-property",
184
+ "transition-timing-function",
185
+ "background-clip",
186
+ "backface-visibility",
187
+ "resize",
188
+ "appearance",
189
+ "user-select",
190
+ "interpolation-mode",
191
+ "direction",
192
+ "marks",
193
+ "page",
194
+ "set-link-source",
195
+ "unicode-bidi",
196
+ "speak"
197
+ ]
198
+ },
199
+ ignoreFiles: [
200
+ "**/node_modules/**",
201
+ "**/dist/**",
202
+ "**/temp/**",
203
+ "**/tmp/**",
204
+ "**/coverage/**",
205
+ "**/*.js",
206
+ "**/*.ts",
207
+ "**/*.tsx",
208
+ "**/*.jsx"
209
+ ]
210
+ };
223
211
  };
224
-
225
- const config = configure();
226
-
212
+ //#endregion
213
+ //#region packages/stylelint/src/index.ts
214
+ var config = configure();
215
+ //#endregion
227
216
  exports.configure = configure;
228
217
  exports.default = config;
package/dist/index.js CHANGED
@@ -1,223 +1,212 @@
1
- const configure = async () => {
2
- return {
3
- plugins: ["stylelint-order", "@stylistic/stylelint-plugin"],
4
- extends: ["stylelint-config-standard-scss", "stylelint-config-recommended-vue/scss"],
5
- rules: {
6
- "at-rule-no-unknown": [
7
- true,
8
- {
9
- ignoreAtRules: [
10
- "use",
11
- "forward",
12
- "for",
13
- "function",
14
- "if",
15
- "each",
16
- "include",
17
- "mixin",
18
- "at-root",
19
- "else",
20
- "extend",
21
- "return",
22
- "debug",
23
- "while",
24
- "error"
25
- ]
26
- }
27
- ],
28
- "no-empty-source": null,
29
- "no-descending-specificity": null,
30
- "nesting-selector-no-missing-scoping-root": null,
31
- "block-no-redundant-nested-style-rules": null,
32
- "block-no-empty": null,
33
- "selector-class-pattern": "[a-zA-Z0-9_-]+",
34
- "selector-pseudo-class-no-unknown": [
35
- true,
36
- {
37
- ignorePseudoClasses: ["global"]
38
- }
39
- ],
40
- "named-grid-areas-no-invalid": null,
41
- "font-family-no-missing-generic-family-keyword": null,
42
- "rule-empty-line-before": [
43
- "always",
44
- {
45
- ignore: ["after-comment", "first-nested"]
46
- }
47
- ],
48
- "function-no-unknown": null,
49
- "unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
50
- // scss
51
- "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
52
- // stylistic
53
- "@stylistic/indentation": "tab",
54
- "@stylistic/declaration-colon-space-after": "always-single-line",
55
- "@stylistic/declaration-colon-space-before": "never",
56
- "@stylistic/declaration-block-trailing-semicolon": "always",
57
- // Specify the alphabetical order of the attributes in the declaration block
58
- "order/properties-order": [
59
- "position",
60
- "top",
61
- "right",
62
- "bottom",
63
- "left",
64
- "z-index",
65
- "display",
66
- "float",
67
- "width",
68
- "height",
69
- "max-width",
70
- "max-height",
71
- "min-width",
72
- "min-height",
73
- "padding",
74
- "padding-top",
75
- "padding-right",
76
- "padding-bottom",
77
- "padding-left",
78
- "margin",
79
- "margin-top",
80
- "margin-right",
81
- "margin-bottom",
82
- "margin-left",
83
- "margin-collapse",
84
- "margin-top-collapse",
85
- "margin-right-collapse",
86
- "margin-bottom-collapse",
87
- "margin-left-collapse",
88
- "overflow",
89
- "overflow-x",
90
- "overflow-y",
91
- "clip",
92
- "clear",
93
- "font",
94
- "font-family",
95
- "font-size",
96
- "font-smoothing",
97
- "osx-font-smoothing",
98
- "font-style",
99
- "font-weight",
100
- "hyphens",
101
- "src",
102
- "line-height",
103
- "letter-spacing",
104
- "word-spacing",
105
- "color",
106
- "text-align",
107
- "text-decoration",
108
- "text-indent",
109
- "text-overflow",
110
- "text-rendering",
111
- "text-size-adjust",
112
- "text-shadow",
113
- "text-transform",
114
- "word-break",
115
- "word-wrap",
116
- "white-space",
117
- "vertical-align",
118
- "list-style",
119
- "list-style-type",
120
- "list-style-position",
121
- "list-style-image",
122
- "pointer-events",
123
- "cursor",
124
- "background",
125
- "background-attachment",
126
- "background-color",
127
- "background-image",
128
- "background-position",
129
- "background-repeat",
130
- "background-size",
131
- "border",
132
- "border-collapse",
133
- "border-top",
134
- "border-right",
135
- "border-bottom",
136
- "border-left",
137
- "border-color",
138
- "border-image",
139
- "border-top-color",
140
- "border-right-color",
141
- "border-bottom-color",
142
- "border-left-color",
143
- "border-spacing",
144
- "border-style",
145
- "border-top-style",
146
- "border-right-style",
147
- "border-bottom-style",
148
- "border-left-style",
149
- "border-width",
150
- "border-top-width",
151
- "border-right-width",
152
- "border-bottom-width",
153
- "border-left-width",
154
- "border-radius",
155
- "border-top-right-radius",
156
- "border-bottom-right-radius",
157
- "border-bottom-left-radius",
158
- "border-top-left-radius",
159
- "border-radius-topright",
160
- "border-radius-bottomright",
161
- "border-radius-bottomleft",
162
- "border-radius-topleft",
163
- "content",
164
- "quotes",
165
- "outline",
166
- "outline-offset",
167
- "opacity",
168
- "filter",
169
- "visibility",
170
- "size",
171
- "zoom",
172
- "transform",
173
- "box-align",
174
- "box-flex",
175
- "box-orient",
176
- "box-pack",
177
- "box-shadow",
178
- "box-sizing",
179
- "table-layout",
180
- "animation",
181
- "animation-delay",
182
- "animation-duration",
183
- "animation-iteration-count",
184
- "animation-name",
185
- "animation-play-state",
186
- "animation-timing-function",
187
- "animation-fill-mode",
188
- "transition",
189
- "transition-delay",
190
- "transition-duration",
191
- "transition-property",
192
- "transition-timing-function",
193
- "background-clip",
194
- "backface-visibility",
195
- "resize",
196
- "appearance",
197
- "user-select",
198
- "interpolation-mode",
199
- "direction",
200
- "marks",
201
- "page",
202
- "set-link-source",
203
- "unicode-bidi",
204
- "speak"
205
- ]
206
- },
207
- ignoreFiles: [
208
- "**/node_modules/**",
209
- "**/dist/**",
210
- "**/temp/**",
211
- "**/tmp/**",
212
- "**/coverage/**",
213
- "**/*.js",
214
- "**/*.ts",
215
- "**/*.tsx",
216
- "**/*.jsx"
217
- ]
218
- };
1
+ //#region packages/stylelint/src/configure.ts
2
+ /**
3
+ * 导出一个可配置的stylelint配置项
4
+ * 1. async方便扩展(可以像@deot/dev-eslint)
5
+ * @returns 配置项(Promise)
6
+ */
7
+ var configure = async () => {
8
+ return {
9
+ plugins: ["stylelint-order", "@stylistic/stylelint-plugin"],
10
+ extends: ["stylelint-config-standard-scss", "stylelint-config-recommended-vue/scss"],
11
+ rules: {
12
+ "at-rule-no-unknown": [true, { ignoreAtRules: [
13
+ "use",
14
+ "forward",
15
+ "for",
16
+ "function",
17
+ "if",
18
+ "each",
19
+ "include",
20
+ "mixin",
21
+ "at-root",
22
+ "else",
23
+ "extend",
24
+ "return",
25
+ "debug",
26
+ "while",
27
+ "error"
28
+ ] }],
29
+ "no-empty-source": null,
30
+ "no-descending-specificity": null,
31
+ "nesting-selector-no-missing-scoping-root": null,
32
+ "block-no-redundant-nested-style-rules": null,
33
+ "block-no-empty": null,
34
+ "selector-class-pattern": "[a-zA-Z0-9_-]+",
35
+ "selector-pseudo-class-no-unknown": [true, { ignorePseudoClasses: ["global"] }],
36
+ "named-grid-areas-no-invalid": null,
37
+ "font-family-no-missing-generic-family-keyword": null,
38
+ "rule-empty-line-before": ["always", { ignore: ["after-comment", "first-nested"] }],
39
+ "function-no-unknown": null,
40
+ "unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
41
+ "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
42
+ "@stylistic/indentation": "tab",
43
+ "@stylistic/declaration-colon-space-after": "always-single-line",
44
+ "@stylistic/declaration-colon-space-before": "never",
45
+ "@stylistic/declaration-block-trailing-semicolon": "always",
46
+ "order/properties-order": [
47
+ "position",
48
+ "top",
49
+ "right",
50
+ "bottom",
51
+ "left",
52
+ "z-index",
53
+ "display",
54
+ "float",
55
+ "width",
56
+ "height",
57
+ "max-width",
58
+ "max-height",
59
+ "min-width",
60
+ "min-height",
61
+ "padding",
62
+ "padding-top",
63
+ "padding-right",
64
+ "padding-bottom",
65
+ "padding-left",
66
+ "margin",
67
+ "margin-top",
68
+ "margin-right",
69
+ "margin-bottom",
70
+ "margin-left",
71
+ "margin-collapse",
72
+ "margin-top-collapse",
73
+ "margin-right-collapse",
74
+ "margin-bottom-collapse",
75
+ "margin-left-collapse",
76
+ "overflow",
77
+ "overflow-x",
78
+ "overflow-y",
79
+ "clip",
80
+ "clear",
81
+ "font",
82
+ "font-family",
83
+ "font-size",
84
+ "font-smoothing",
85
+ "osx-font-smoothing",
86
+ "font-style",
87
+ "font-weight",
88
+ "hyphens",
89
+ "src",
90
+ "line-height",
91
+ "letter-spacing",
92
+ "word-spacing",
93
+ "color",
94
+ "text-align",
95
+ "text-decoration",
96
+ "text-indent",
97
+ "text-overflow",
98
+ "text-rendering",
99
+ "text-size-adjust",
100
+ "text-shadow",
101
+ "text-transform",
102
+ "word-break",
103
+ "word-wrap",
104
+ "white-space",
105
+ "vertical-align",
106
+ "list-style",
107
+ "list-style-type",
108
+ "list-style-position",
109
+ "list-style-image",
110
+ "pointer-events",
111
+ "cursor",
112
+ "background",
113
+ "background-attachment",
114
+ "background-color",
115
+ "background-image",
116
+ "background-position",
117
+ "background-repeat",
118
+ "background-size",
119
+ "border",
120
+ "border-collapse",
121
+ "border-top",
122
+ "border-right",
123
+ "border-bottom",
124
+ "border-left",
125
+ "border-color",
126
+ "border-image",
127
+ "border-top-color",
128
+ "border-right-color",
129
+ "border-bottom-color",
130
+ "border-left-color",
131
+ "border-spacing",
132
+ "border-style",
133
+ "border-top-style",
134
+ "border-right-style",
135
+ "border-bottom-style",
136
+ "border-left-style",
137
+ "border-width",
138
+ "border-top-width",
139
+ "border-right-width",
140
+ "border-bottom-width",
141
+ "border-left-width",
142
+ "border-radius",
143
+ "border-top-right-radius",
144
+ "border-bottom-right-radius",
145
+ "border-bottom-left-radius",
146
+ "border-top-left-radius",
147
+ "border-radius-topright",
148
+ "border-radius-bottomright",
149
+ "border-radius-bottomleft",
150
+ "border-radius-topleft",
151
+ "content",
152
+ "quotes",
153
+ "outline",
154
+ "outline-offset",
155
+ "opacity",
156
+ "filter",
157
+ "visibility",
158
+ "size",
159
+ "zoom",
160
+ "transform",
161
+ "box-align",
162
+ "box-flex",
163
+ "box-orient",
164
+ "box-pack",
165
+ "box-shadow",
166
+ "box-sizing",
167
+ "table-layout",
168
+ "animation",
169
+ "animation-delay",
170
+ "animation-duration",
171
+ "animation-iteration-count",
172
+ "animation-name",
173
+ "animation-play-state",
174
+ "animation-timing-function",
175
+ "animation-fill-mode",
176
+ "transition",
177
+ "transition-delay",
178
+ "transition-duration",
179
+ "transition-property",
180
+ "transition-timing-function",
181
+ "background-clip",
182
+ "backface-visibility",
183
+ "resize",
184
+ "appearance",
185
+ "user-select",
186
+ "interpolation-mode",
187
+ "direction",
188
+ "marks",
189
+ "page",
190
+ "set-link-source",
191
+ "unicode-bidi",
192
+ "speak"
193
+ ]
194
+ },
195
+ ignoreFiles: [
196
+ "**/node_modules/**",
197
+ "**/dist/**",
198
+ "**/temp/**",
199
+ "**/tmp/**",
200
+ "**/coverage/**",
201
+ "**/*.js",
202
+ "**/*.ts",
203
+ "**/*.tsx",
204
+ "**/*.jsx"
205
+ ]
206
+ };
219
207
  };
220
-
221
- const config = configure();
222
-
208
+ //#endregion
209
+ //#region packages/stylelint/src/index.ts
210
+ var config = configure();
211
+ //#endregion
223
212
  export { configure, config as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/dev-stylelint",
3
- "version": "2.9.8",
3
+ "version": "2.9.10",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
@@ -19,12 +19,12 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@stylistic/stylelint-plugin": "^4.0.0",
23
- "stylelint-config-standard-scss": "^16.0.0",
22
+ "@stylistic/stylelint-plugin": "^5.1.0",
23
+ "stylelint-config-standard-scss": "^17.0.0",
24
24
  "stylelint-config-recommended-vue": "^1.6.1",
25
- "stylelint-order": "^7.0.0"
25
+ "stylelint-order": "^8.1.1"
26
26
  },
27
27
  "devDependencies": {
28
- "stylelint": "^16.26.1"
28
+ "stylelint": "^17.6.0"
29
29
  }
30
30
  }