@alexlit/config-eslint 40.0.1 → 41.1.0
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.
- package/.eslintrc.js +5 -11
- package/CHANGELOG.md +13 -0
- package/dictionaries/default.js +38 -2
- package/package.json +2 -2
- package/plugins/etc.js +2 -1
- package/plugins/sort-class-members.js +178 -3
- package/plugins/typescript/allow-boolean-property-list.const.js +37 -0
- package/plugins/typescript/boolean-prefixes.const.js +11 -0
- package/plugins/typescript/english-verbs.const.js +3359 -0
- package/plugins/{typescript.js → typescript/index.js} +43 -85
package/.eslintrc.js
CHANGED
|
@@ -21,6 +21,7 @@ module.exports = defineConfig({
|
|
|
21
21
|
'./plugins/compat',
|
|
22
22
|
// './plugins/decorator-position', // wait for eslint@8 support
|
|
23
23
|
'./plugins/eslint-comments',
|
|
24
|
+
'./plugins/etc',
|
|
24
25
|
'./plugins/ext',
|
|
25
26
|
'./plugins/filenames',
|
|
26
27
|
'./plugins/import',
|
|
@@ -41,13 +42,13 @@ module.exports = defineConfig({
|
|
|
41
42
|
'./plugins/security',
|
|
42
43
|
'./plugins/simple-import-sort',
|
|
43
44
|
'./plugins/sonar',
|
|
44
|
-
|
|
45
|
+
'./plugins/sort-class-members',
|
|
45
46
|
'./plugins/sort-destructure-keys',
|
|
46
47
|
'./plugins/sort-keys-fix',
|
|
47
48
|
'./plugins/spellcheck',
|
|
48
49
|
'./plugins/sql',
|
|
49
50
|
'./plugins/testing-library',
|
|
50
|
-
'./plugins/typescript',
|
|
51
|
+
'./plugins/typescript/index',
|
|
51
52
|
'./plugins/typescript-sort-keys',
|
|
52
53
|
'./plugins/unicorn',
|
|
53
54
|
'./plugins/unused-imports',
|
|
@@ -93,20 +94,13 @@ module.exports = defineConfig({
|
|
|
93
94
|
'global-require': 'off',
|
|
94
95
|
},
|
|
95
96
|
},
|
|
96
|
-
|
|
97
|
-
{
|
|
98
|
-
extends: [require.resolve('./plugins/etc')],
|
|
99
|
-
files: ['*.ts', '*.tsx'],
|
|
100
|
-
|
|
101
|
-
parserOptions: {
|
|
102
|
-
project: './tsconfig.json',
|
|
103
|
-
},
|
|
104
|
-
},
|
|
105
97
|
],
|
|
106
98
|
|
|
107
99
|
parserOptions: {
|
|
108
100
|
ecmaFeatures: { jsx: true },
|
|
101
|
+
extraFileExtensions: ['.vue'],
|
|
109
102
|
parser: '@typescript-eslint/parser',
|
|
103
|
+
project: './tsconfig.json',
|
|
110
104
|
},
|
|
111
105
|
|
|
112
106
|
root: true,
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# [41.1.0](https://github.com/alex-lit/config-eslint/compare/v41.0.2...v41.1.0) (2022-01-13)
|
|
2
|
+
|
|
3
|
+
## [41.0.2](https://github.com/alex-lit/config-eslint/compare/v41.0.1...v41.0.2) (2022-01-13)
|
|
4
|
+
|
|
5
|
+
## [41.0.1](https://github.com/alex-lit/config-eslint/compare/v41.0.0...v41.0.1) (2022-01-13)
|
|
6
|
+
|
|
7
|
+
# [41.0.0](https://github.com/alex-lit/config-eslint/compare/v40.0.1...v41.0.0) (2022-01-13)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **plugin:** add sort-class-members plugin
|
|
12
|
+
([32bce88](https://github.com/alex-lit/config-eslint/commit/32bce88e10cd3d4c26a9560a7fb13b6f2eb10d50))
|
|
13
|
+
|
|
1
14
|
## [40.0.1](https://github.com/alex-lit/config-eslint/compare/v40.0.0...v40.0.1) (2022-01-12)
|
|
2
15
|
|
|
3
16
|
# [40.0.0](https://github.com/alex-lit/config-eslint/compare/v39.0.0...v40.0.0) (2022-01-12)
|
package/dictionaries/default.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
module.exports = [
|
|
2
2
|
'aave',
|
|
3
|
-
'autofocus',
|
|
4
3
|
'airbnb',
|
|
5
4
|
'aland',
|
|
6
5
|
'alexey',
|
|
@@ -13,14 +12,21 @@ module.exports = [
|
|
|
13
12
|
'alfatop',
|
|
14
13
|
'algo',
|
|
15
14
|
'alipay',
|
|
16
|
-
'
|
|
15
|
+
'allowfullscreen',
|
|
16
|
+
'allowpaymentrequest',
|
|
17
17
|
'angularjs',
|
|
18
|
+
'annualize',
|
|
19
|
+
'annunciate',
|
|
18
20
|
'apollo',
|
|
19
21
|
'applescript',
|
|
22
|
+
'aromatize',
|
|
20
23
|
'asyncgenerator',
|
|
21
24
|
'asynciterable',
|
|
22
25
|
'atomtest',
|
|
26
|
+
'autofocus',
|
|
27
|
+
'autoplay',
|
|
23
28
|
'averta',
|
|
29
|
+
'aviate',
|
|
24
30
|
'avif',
|
|
25
31
|
'axios',
|
|
26
32
|
'backtick',
|
|
@@ -58,6 +64,7 @@ module.exports = [
|
|
|
58
64
|
'codemirror',
|
|
59
65
|
'coffeescript',
|
|
60
66
|
'coinify',
|
|
67
|
+
'colour',
|
|
61
68
|
'combinator',
|
|
62
69
|
'combinators',
|
|
63
70
|
'commitlint',
|
|
@@ -68,6 +75,7 @@ module.exports = [
|
|
|
68
75
|
'contextmenu',
|
|
69
76
|
'cors',
|
|
70
77
|
'cpay',
|
|
78
|
+
'crossexamine',
|
|
71
79
|
'crossorigin',
|
|
72
80
|
'cryptocurrency',
|
|
73
81
|
'csstree',
|
|
@@ -85,9 +93,11 @@ module.exports = [
|
|
|
85
93
|
'destructured',
|
|
86
94
|
'devgates',
|
|
87
95
|
'devtools',
|
|
96
|
+
'dilapidate',
|
|
88
97
|
'dinoql',
|
|
89
98
|
'directus',
|
|
90
99
|
'disqus',
|
|
100
|
+
'distain',
|
|
91
101
|
'dogecoin',
|
|
92
102
|
'dotenv',
|
|
93
103
|
'dribbble',
|
|
@@ -99,6 +109,7 @@ module.exports = [
|
|
|
99
109
|
'enablejsapi',
|
|
100
110
|
'encipherment',
|
|
101
111
|
'endregion',
|
|
112
|
+
'enquire',
|
|
102
113
|
'eqeqeq',
|
|
103
114
|
'erc20',
|
|
104
115
|
'esbenp',
|
|
@@ -112,6 +123,7 @@ module.exports = [
|
|
|
112
123
|
'evenodd',
|
|
113
124
|
'facebook',
|
|
114
125
|
'favicon',
|
|
126
|
+
'favour',
|
|
115
127
|
'fetchable',
|
|
116
128
|
'fieldset',
|
|
117
129
|
'filenames',
|
|
@@ -120,6 +132,9 @@ module.exports = [
|
|
|
120
132
|
'flac',
|
|
121
133
|
'flexepin',
|
|
122
134
|
'forcedefault',
|
|
135
|
+
'forlese',
|
|
136
|
+
'formnovalidate',
|
|
137
|
+
'fulfil',
|
|
123
138
|
'getters',
|
|
124
139
|
'globbing',
|
|
125
140
|
'googletagmanager',
|
|
@@ -128,12 +143,15 @@ module.exports = [
|
|
|
128
143
|
'gravatar',
|
|
129
144
|
'greasemonkey',
|
|
130
145
|
'grecaptcha',
|
|
146
|
+
'handwrite',
|
|
131
147
|
'htmllint',
|
|
132
148
|
'htmllintrc',
|
|
133
149
|
'huskyrc',
|
|
134
150
|
'identicon',
|
|
135
151
|
'iife',
|
|
152
|
+
'illtreat',
|
|
136
153
|
'imask',
|
|
154
|
+
'indebt',
|
|
137
155
|
'inferrable',
|
|
138
156
|
'inlined',
|
|
139
157
|
'inmemory',
|
|
@@ -142,6 +160,7 @@ module.exports = [
|
|
|
142
160
|
'instagram',
|
|
143
161
|
'interop',
|
|
144
162
|
'invision',
|
|
163
|
+
'itemscope',
|
|
145
164
|
'itez',
|
|
146
165
|
'jarallax',
|
|
147
166
|
'joomla',
|
|
@@ -193,6 +212,8 @@ module.exports = [
|
|
|
193
212
|
'monorepos',
|
|
194
213
|
'monospace',
|
|
195
214
|
'monsterid',
|
|
215
|
+
'mould',
|
|
216
|
+
'moult',
|
|
196
217
|
'msapplication',
|
|
197
218
|
'multilines',
|
|
198
219
|
'namepath',
|
|
@@ -204,9 +225,11 @@ module.exports = [
|
|
|
204
225
|
'newwindow',
|
|
205
226
|
'nginx',
|
|
206
227
|
'noindex',
|
|
228
|
+
'nomodule',
|
|
207
229
|
'noninteraction',
|
|
208
230
|
'noopener',
|
|
209
231
|
'notificators',
|
|
232
|
+
'novalidate',
|
|
210
233
|
'npmjs',
|
|
211
234
|
'npmlint',
|
|
212
235
|
'npmpackagejsonlintrc',
|
|
@@ -233,6 +256,7 @@ module.exports = [
|
|
|
233
256
|
'personalise',
|
|
234
257
|
'phantomjs',
|
|
235
258
|
'pipeless',
|
|
259
|
+
'playsinline',
|
|
236
260
|
'plist',
|
|
237
261
|
'plopfile',
|
|
238
262
|
'pnpapi',
|
|
@@ -241,10 +265,12 @@ module.exports = [
|
|
|
241
265
|
'poolifier',
|
|
242
266
|
'popperjs',
|
|
243
267
|
'postcss',
|
|
268
|
+
'practise',
|
|
244
269
|
'pragma',
|
|
245
270
|
'preloader',
|
|
246
271
|
'prismjs',
|
|
247
272
|
'profiler',
|
|
273
|
+
'prophesize',
|
|
248
274
|
'prototypejs',
|
|
249
275
|
'proxying',
|
|
250
276
|
'qiwi',
|
|
@@ -263,7 +289,10 @@ module.exports = [
|
|
|
263
289
|
'robohash',
|
|
264
290
|
'rollup',
|
|
265
291
|
'samsung',
|
|
292
|
+
'saponify',
|
|
293
|
+
'satirise',
|
|
266
294
|
'sberbank',
|
|
295
|
+
'scabble',
|
|
267
296
|
'scalable',
|
|
268
297
|
'scannable',
|
|
269
298
|
'scripthost',
|
|
@@ -283,6 +312,7 @@ module.exports = [
|
|
|
283
312
|
'srcs',
|
|
284
313
|
'stepik',
|
|
285
314
|
'storysource',
|
|
315
|
+
'strategize',
|
|
286
316
|
'stringified',
|
|
287
317
|
'styl',
|
|
288
318
|
'stylelint',
|
|
@@ -292,6 +322,7 @@ module.exports = [
|
|
|
292
322
|
'sumsub',
|
|
293
323
|
'supabase',
|
|
294
324
|
'svgstore',
|
|
325
|
+
'systemize',
|
|
295
326
|
'tagless',
|
|
296
327
|
'taobao',
|
|
297
328
|
'tcsbank',
|
|
@@ -307,11 +338,13 @@ module.exports = [
|
|
|
307
338
|
'travesti',
|
|
308
339
|
'treeshake',
|
|
309
340
|
'trello',
|
|
341
|
+
'truespeed',
|
|
310
342
|
'trustpilot',
|
|
311
343
|
'tsconfig',
|
|
312
344
|
'txid',
|
|
313
345
|
'typedarrays',
|
|
314
346
|
'uids',
|
|
347
|
+
'unarm',
|
|
315
348
|
'unauthorised',
|
|
316
349
|
'unescaped',
|
|
317
350
|
'unfollow',
|
|
@@ -325,6 +358,7 @@ module.exports = [
|
|
|
325
358
|
'vitejs',
|
|
326
359
|
'vkontakte',
|
|
327
360
|
'vnode',
|
|
361
|
+
'volar',
|
|
328
362
|
'vscode',
|
|
329
363
|
'vue3',
|
|
330
364
|
'vuejs',
|
|
@@ -333,6 +367,7 @@ module.exports = [
|
|
|
333
367
|
'vuetify',
|
|
334
368
|
'vuetifyjs',
|
|
335
369
|
'vuex',
|
|
370
|
+
'waterlog',
|
|
336
371
|
'wavatar',
|
|
337
372
|
'webextensions',
|
|
338
373
|
'webkit',
|
|
@@ -355,6 +390,7 @@ module.exports = [
|
|
|
355
390
|
'writeable',
|
|
356
391
|
'wubi',
|
|
357
392
|
'xlink',
|
|
393
|
+
'xray',
|
|
358
394
|
'yandex',
|
|
359
395
|
'yandexmoney',
|
|
360
396
|
'yastatic',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "41.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "eslint config",
|
|
6
6
|
"keywords": [
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
85
85
|
"eslint-plugin-spellcheck": "^0.0.19",
|
|
86
86
|
"eslint-plugin-sql": "^2.1.0",
|
|
87
|
-
"eslint-plugin-svelte3": "^3.
|
|
87
|
+
"eslint-plugin-svelte3": "^3.4.0",
|
|
88
88
|
"eslint-plugin-testing-library": "^5.0.3",
|
|
89
89
|
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
90
90
|
"eslint-plugin-unicorn": "^40.0.0",
|
package/plugins/etc.js
CHANGED
|
@@ -7,9 +7,10 @@ module.exports = {
|
|
|
7
7
|
plugins: ['etc'],
|
|
8
8
|
|
|
9
9
|
rules: {
|
|
10
|
+
'etc/no-implicit-any-catch': 'off',
|
|
10
11
|
'etc/no-misused-generics': 'error',
|
|
11
12
|
'etc/no-t': 'error',
|
|
12
|
-
'etc/prefer-less-than': '
|
|
13
|
+
'etc/prefer-less-than': 'off',
|
|
13
14
|
'etc/underscore-internal': 'error',
|
|
14
15
|
},
|
|
15
16
|
};
|
|
@@ -20,6 +20,93 @@ module.exports = {
|
|
|
20
20
|
},
|
|
21
21
|
],
|
|
22
22
|
|
|
23
|
+
emits: [
|
|
24
|
+
{
|
|
25
|
+
name: '/emit[A-Z].*/',
|
|
26
|
+
sort: 'alphabetical',
|
|
27
|
+
type: 'method',
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
|
|
31
|
+
injects: [
|
|
32
|
+
{
|
|
33
|
+
groupByDecorator: 'Inject',
|
|
34
|
+
sort: 'alphabetical',
|
|
35
|
+
type: 'property',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
groupByDecorator: 'InjectReactive',
|
|
39
|
+
sort: 'alphabetical',
|
|
40
|
+
type: 'property',
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
|
|
44
|
+
models: [
|
|
45
|
+
{
|
|
46
|
+
groupByDecorator: 'Model',
|
|
47
|
+
sort: 'alphabetical',
|
|
48
|
+
type: 'property',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
groupByDecorator: 'ModelSync',
|
|
52
|
+
sort: 'alphabetical',
|
|
53
|
+
type: 'property',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
groupByDecorator: 'VModel',
|
|
57
|
+
sort: 'alphabetical',
|
|
58
|
+
type: 'property',
|
|
59
|
+
},
|
|
60
|
+
],
|
|
61
|
+
|
|
62
|
+
props: [
|
|
63
|
+
{
|
|
64
|
+
groupByDecorator: 'Prop',
|
|
65
|
+
sort: 'alphabetical',
|
|
66
|
+
type: 'property',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
groupByDecorator: 'PropSync',
|
|
70
|
+
sort: 'alphabetical',
|
|
71
|
+
type: 'property',
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
|
|
75
|
+
provides: [
|
|
76
|
+
{
|
|
77
|
+
groupByDecorator: 'Provide',
|
|
78
|
+
sort: 'alphabetical',
|
|
79
|
+
type: 'property',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
groupByDecorator: 'ProvideReactive',
|
|
83
|
+
sort: 'alphabetical',
|
|
84
|
+
type: 'property',
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
|
|
88
|
+
refs: [
|
|
89
|
+
{
|
|
90
|
+
groupByDecorator: 'Ref',
|
|
91
|
+
sort: 'alphabetical',
|
|
92
|
+
type: 'property',
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
|
|
96
|
+
'sorted-methods': [
|
|
97
|
+
{
|
|
98
|
+
sort: 'alphabetical',
|
|
99
|
+
type: 'method',
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
|
|
103
|
+
'sorted-properties': [
|
|
104
|
+
{
|
|
105
|
+
sort: 'alphabetical',
|
|
106
|
+
type: 'property',
|
|
107
|
+
},
|
|
108
|
+
],
|
|
109
|
+
|
|
23
110
|
'static-accessor-pairs': [
|
|
24
111
|
{
|
|
25
112
|
accessorPair: true,
|
|
@@ -88,6 +175,70 @@ module.exports = {
|
|
|
88
175
|
static: true,
|
|
89
176
|
},
|
|
90
177
|
],
|
|
178
|
+
|
|
179
|
+
'vue-activated': [{ name: 'activated', type: 'method' }],
|
|
180
|
+
|
|
181
|
+
'vue-before-create': [{ name: 'beforeCreate', type: 'method' }],
|
|
182
|
+
|
|
183
|
+
'vue-before-mount': [{ name: 'beforeMount', type: 'method' }],
|
|
184
|
+
|
|
185
|
+
'vue-before-unmount': [{ name: 'beforeUnmount', type: 'method' }],
|
|
186
|
+
|
|
187
|
+
'vue-before-update': [{ name: 'beforeUpdate', type: 'method' }],
|
|
188
|
+
|
|
189
|
+
'vue-created': [{ name: 'created', type: 'method' }],
|
|
190
|
+
|
|
191
|
+
'vue-deactivated': [{ name: 'deactivated', type: 'method' }],
|
|
192
|
+
|
|
193
|
+
'vue-error-captured': [{ name: 'errorCaptured', type: 'method' }],
|
|
194
|
+
|
|
195
|
+
'vue-mounted': [{ name: 'mounted', type: 'method' }],
|
|
196
|
+
|
|
197
|
+
'vue-render-tracked': [{ name: 'renderTracked', type: 'method' }],
|
|
198
|
+
|
|
199
|
+
'vue-render-triggered': [{ name: 'renderTriggered', type: 'method' }],
|
|
200
|
+
|
|
201
|
+
'vue-unmounted': [{ name: 'unmounted', type: 'method' }],
|
|
202
|
+
|
|
203
|
+
'vue-updated': [{ name: 'updated', type: 'method' }],
|
|
204
|
+
|
|
205
|
+
vuex: [
|
|
206
|
+
{
|
|
207
|
+
groupByDecorator: 'namespace',
|
|
208
|
+
sort: 'alphabetical',
|
|
209
|
+
type: 'property',
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
groupByDecorator: 'State',
|
|
213
|
+
sort: 'alphabetical',
|
|
214
|
+
type: 'property',
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
groupByDecorator: 'Getter',
|
|
218
|
+
sort: 'alphabetical',
|
|
219
|
+
type: 'property',
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
groupByDecorator: 'Mutation',
|
|
223
|
+
sort: 'alphabetical',
|
|
224
|
+
type: 'property',
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
groupByDecorator: 'Action',
|
|
228
|
+
sort: 'alphabetical',
|
|
229
|
+
type: 'property',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
groupByDecorator: '(namespace',
|
|
233
|
+
sort: 'alphabetical',
|
|
234
|
+
type: 'property',
|
|
235
|
+
},
|
|
236
|
+
],
|
|
237
|
+
|
|
238
|
+
watches: [
|
|
239
|
+
{ name: '/handle[A-Z].*/', sort: 'alphabetical', type: 'method' },
|
|
240
|
+
{ name: '/on[A-Z].*/', sort: 'alphabetical', type: 'method' },
|
|
241
|
+
],
|
|
91
242
|
},
|
|
92
243
|
|
|
93
244
|
order: [
|
|
@@ -100,8 +251,17 @@ module.exports = {
|
|
|
100
251
|
'[static-methods]',
|
|
101
252
|
'[static-async-methods]',
|
|
102
253
|
|
|
254
|
+
// decorated properties
|
|
255
|
+
'[vuex]',
|
|
256
|
+
'[injects]',
|
|
257
|
+
'[props]',
|
|
258
|
+
'[models]',
|
|
259
|
+
'[provides]',
|
|
260
|
+
'[emits]',
|
|
261
|
+
'[refs]',
|
|
262
|
+
|
|
103
263
|
// properties
|
|
104
|
-
'[properties]',
|
|
264
|
+
'[sorted-properties]',
|
|
105
265
|
'[arrow-function-properties]',
|
|
106
266
|
|
|
107
267
|
// constructor
|
|
@@ -112,11 +272,26 @@ module.exports = {
|
|
|
112
272
|
'[getters]',
|
|
113
273
|
'[setters]',
|
|
114
274
|
|
|
275
|
+
// vue lifecycle hooks
|
|
276
|
+
'[vue-before-create]',
|
|
277
|
+
'[vue-created]',
|
|
278
|
+
'[vue-before-mount]',
|
|
279
|
+
'[vue-mounted]',
|
|
280
|
+
'[vue-before-update]',
|
|
281
|
+
'[vue-updated]',
|
|
282
|
+
'[vue-before-unmount]',
|
|
283
|
+
'[vue-unmounted]',
|
|
284
|
+
'[vue-error-captured]',
|
|
285
|
+
'[vue-render-tracked]',
|
|
286
|
+
'[vue-render-triggered]',
|
|
287
|
+
'[vue-activated]',
|
|
288
|
+
|
|
115
289
|
// methods
|
|
116
|
-
'[
|
|
290
|
+
'[watches]',
|
|
291
|
+
'[sorted-methods]',
|
|
117
292
|
'[async-methods]',
|
|
118
293
|
|
|
119
|
-
// static
|
|
294
|
+
// private static
|
|
120
295
|
'[static-conventional-private-properties]',
|
|
121
296
|
'[static-conventional-private-methods]',
|
|
122
297
|
'[static-async-conventional-private-methods]',
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
module.exports = [
|
|
2
|
+
// html attributes
|
|
3
|
+
'allowfullscreen',
|
|
4
|
+
'allowpaymentrequest',
|
|
5
|
+
'async',
|
|
6
|
+
'autofocus',
|
|
7
|
+
'autoplay',
|
|
8
|
+
'checked',
|
|
9
|
+
'controls',
|
|
10
|
+
'default',
|
|
11
|
+
'defer',
|
|
12
|
+
'disabled',
|
|
13
|
+
'formnovalidate',
|
|
14
|
+
'hidden',
|
|
15
|
+
'ismap',
|
|
16
|
+
'itemscope',
|
|
17
|
+
'multiple',
|
|
18
|
+
'muted',
|
|
19
|
+
'nomodule',
|
|
20
|
+
'novalidate',
|
|
21
|
+
'open',
|
|
22
|
+
'playsinline',
|
|
23
|
+
'readonly',
|
|
24
|
+
'required',
|
|
25
|
+
'reversed',
|
|
26
|
+
'selected',
|
|
27
|
+
'truespeed',
|
|
28
|
+
|
|
29
|
+
// vuex store module registration
|
|
30
|
+
'namespaced',
|
|
31
|
+
|
|
32
|
+
// other
|
|
33
|
+
'enabled',
|
|
34
|
+
'invalid',
|
|
35
|
+
'valid',
|
|
36
|
+
'value',
|
|
37
|
+
];
|