-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.js
575 lines (575 loc) · 14.3 KB
/
vue.js
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
module.exports = {
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@babel/eslint-parser',
ecmaVersion: 'latest',
ecmaFeatures: {
jsx: true,
},
// 即使没有 babelrc 配置文件,也使用 @babel/eslint-parser 来解析
requireConfigFile: false,
// 仅允许 import export 语句出现在模块的顶层
allowImportExportEverywhere: false,
sourceType: 'module',
},
env: {
'vue/setup-compiler-macros': true,
browser: true,
commonjs: true,
es6: true,
node: true,
},
plugins: ['vue'],
extends: ['plugin:vue/base'],
rules: {
/**
* 标签属性必须按规则排序
*/
'vue/attributes-order': 'error',
/**
* 限制组件名的风格
*/
'vue/component-name-in-template-casing': 'off',
/**
* 自定义事件名必须用 kebab-case 风格
*/
'vue/custom-event-name-casing': 'error',
'dot-notation': 'off',
'vue/dot-notation': 'off',
/**
* 必须使用 === 或 !==,禁止使用 == 或 !=
*/
eqeqeq: 'off',
'vue/eqeqeq': ['error', 'always'],
/**
* button 标签必须有 type 属性
*/
'vue/html-button-has-type': 'off',
/**
* HTML 注释的 <!-- 后必须有空格或换行符
*/
'vue/html-comment-content-newline': 'off',
/**
* HTML 注释必须有首位空格
*/
'vue/html-comment-content-spacing': 'off',
/**
* HTML 注释缩进必须有两个空格
*/
'vue/html-comment-indent': 'off',
/**
* 修复 no-unused-vars 不检查 jsx 的问题
*/
'vue/jsx-uses-vars': 'error',
/**
* 组件名称必须和文件名一致
*/
'vue/match-component-file-name': 'off',
/**
* 多行属性之间必须有空行
*/
'vue/new-line-between-multi-line-property': 'off',
/**
* nextTick 必须使用 Promise 模式调用
*/
'vue/next-tick-style': 'off',
/**
* watch 中禁止使用箭头函数
*/
'vue/no-arrow-functions-in-watch': 'error',
/**
* 计算属性禁止包含异步方法
*/
'vue/no-async-in-computed-properties': 'error',
/**
* 禁止 <template> 中使用字符串
*/
'vue/no-bare-strings-in-template': 'off',
/**
* 禁止给布尔值 props 添加默认值
*/
'vue/no-boolean-default': 'off',
/**
* 禁止将常量作为分支条件判断中的测试表达式,但允许作为循环条件判断中的测试表达式
*/
'no-constant-condition': 'off',
'vue/no-constant-condition': 'off',
/**
* 禁止自定义的 v-modal 修饰语
*/
'vue/no-custom-modifiers-on-v-model': 'error',
/**
* 禁止重复的键名
*/
'vue/no-dupe-keys': 'error',
/**
* 禁止在 v-if 和 v-else-if 中出现重复的测试表达式
*/
'vue/no-dupe-v-else-if': 'error',
/**
* 使用 v-bind="$attrs" 时 inheritAttrs 必须是 false
*/
'vue/no-duplicate-attr-inheritance': 'error',
/**
* 禁止出现重复的属性
*/
'vue/no-duplicate-attributes': [
'error',
{
allowCoexistClass: true,
allowCoexistStyle: true,
},
],
/**
* 禁止 <template> <script> <style> 为空
*/
'vue/no-empty-component-block': 'error',
/**
* 禁止解构赋值中出现空 {} 或 []
*/
'no-empty-pattern': 'off',
'vue/no-empty-pattern': 'error',
/**
* 禁止在 <script setup> 中使用 export
*/
'vue/no-export-in-script-setup': 'error',
/**
* 禁止 model 中出现错误的属性
*/
'vue/no-invalid-model-keys': 'error',
/**
* 禁止使用特殊空白符(比如全角空格),除非是出现在字符串、正则表达式、模版字符串中或 HTML 内容中
*/
'no-irregular-whitespace': 'off',
'vue/no-irregular-whitespace': [
'error',
{
skipStrings: true,
skipComments: false,
skipRegExps: true,
skipTemplates: true,
skipHTMLTextContents: true,
},
],
/**
* 禁止异步注册生命周期
*/
'vue/no-lifecycle-after-await': 'error',
/**
* 禁止出现没必要的 <template>
*/
'vue/no-lone-template': 'error',
/**
* 禁止 class 中出现复数的对象
*/
'vue/no-multiple-objects-in-class': 'error',
/**
* 禁止给 scoped slots 传递多个参数
*/
'vue/no-multiple-slot-args': 'error',
/**
* 禁止模版中有多个根节点
*/
'vue/no-multiple-template-root': 'error',
/**
* 禁止修改组件的 props
*/
'vue/no-mutating-props': 'error',
/**
* 禁止出现语法错误
*/
'vue/no-parsing-error': 'error',
/**
* 禁止潜在的拼写错误
*/
'vue/no-potential-component-option-typo': 'off',
/**
* 禁止直接使用由 ref 生成的变量,必须使用它的 value
*/
'vue/no-ref-as-operand': 'error',
/**
* 组件的 name 属性静止使用保留字
*/
'vue/no-reserved-component-names': 'error',
/**
* 禁止覆盖保留字
*/
'vue/no-reserved-keys': 'error',
/**
* 禁止在模版中使用指定的 block
*/
'vue/no-restricted-block': 'off',
/**
* 禁止 await 后调用指定的函数
*/
'vue/no-restricted-call-after-await': 'off',
/**
* 限制使用特定的 class
*/
'vue/no-restricted-class': 'off',
/**
* 禁止使用指定的组件选项
*/
'vue/no-restricted-component-options': 'off',
/**
* 禁止使用特定的自定义事件
*/
'vue/no-restricted-custom-event': 'off',
/**
* 禁止使用特定的 props
*/
'vue/no-restricted-props': 'off',
/**
* 禁止使用指定的属性
*/
'vue/no-restricted-static-attribute': 'off',
/**
* 禁止使用指定的语法
*/
'no-restricted-syntax': 'off',
'vue/no-restricted-syntax': 'off',
/**
* 禁止使用指定的 v-bind 参数
*/
'vue/no-restricted-v-bind': 'off',
/**
* 禁止对 setup 中的 props 解构
*/
'vue/no-setup-props-destructure': 'error',
/**
* 组件的 data 属性的值必须是一个函数
*/
'vue/no-shared-component-data': 'off',
/**
* 禁止在计算属性中对属性修改
*/
'vue/no-side-effects-in-computed-properties': 'off',
/**
* 禁止在数组中出现连续的逗号
*/
'no-sparse-arrays': 'off',
'vue/no-sparse-arrays': 'error',
/**
* 禁止使用 style 属性
*/
'vue/no-static-inline-styles': 'off',
/**
* 禁止 <template> 使用 key 属性
*/
'vue/no-template-key': 'off',
/**
* 模版中的变量名禁止与前一个作用域重名
*/
'vue/no-template-shadow': 'off',
/**
* 添加了 target="_blank" 属性时,必须添加 rel="noopener noreferrer"
*/
'vue/no-template-target-blank': 'off',
/**
* 禁止在 <textarea> 中出现模版语法 {{message}}
*/
'vue/no-textarea-mustache': 'error',
/**
* 禁止在 beforeRouteEnter 方法中使用 this
*/
'vue/no-this-in-before-route-enter': 'error',
/**
* 禁止使用未注册的组件
*/
'vue/no-unregistered-components': 'off',
/**
* 当你的 vue 版本较老时,禁用还未支持的语法
*/
'vue/no-unsupported-features': 'off',
/**
* 禁止定义在 components 中的组件未使用
*/
'vue/no-unused-components': 'error',
/**
* 禁止属性定义了却未使用
*/
'vue/no-unused-properties': 'off',
/**
* 标签属性必须按规则排序
*/
'vue/no-unused-refs': 'off',
/**
* 模版中已定义的变量必须使用
*/
'vue/no-unused-vars': 'error',
/**
* 禁止将计算熟悉当作方法调用
*/
'vue/no-use-computed-property-like-method': 'error',
/**
* 禁止在同一个元素上使用 v-if 和 v-for 指令
*/
'vue/no-use-v-if-with-v-for': 'error',
/**
* 禁止出现没必要的字符串连接
*/
'no-useless-concat': 'off',
'vue/no-useless-concat': 'error',
/**
* 禁止出现无用的 mustache 字符串
*/
'vue/no-useless-mustaches': 'error',
/**
* 禁止模版中使用未生效的属性
*/
'vue/no-useless-template-attributes': 'error',
/**
* 禁止出现无用的 v-bind
*/
'vue/no-useless-v-bind': 'error',
/**
* 禁止有 v-for 属性时又有 key 属性
*/
'vue/no-v-for-template-key': 'error',
/**
* 禁止 v-for 属性的子节点有 key 属性
*/
'vue/no-v-for-template-key-on-child': 'error',
/**
* 禁止使用 v-html
*/
'vue/no-v-html': 'off',
/**
* 禁止给 v-model 属性添加参数
*/
'vue/no-v-model-argument': 'error',
/**
* 禁止使用 v-text
*/
'vue/no-v-text': 'off',
/**
* 禁止在 await 之后调用 watch
*/
'vue/no-watch-after-await': 'error',
/**
* 一个文件必须仅包含一个组件
*/
'vue/one-component-per-file': 'error',
/**
* 组件的属性必须为一定的顺序
*/
'vue/order-in-components': 'error',
/**
* <template> <script> <style> 之间必须由空行
*/
'vue/padding-line-between-blocks': 'off',
/**
* 必须使用模版字符串而不是字符串连接
*/
'prefer-template': 'off',
'vue/prefer-template': 'off',
/**
* props 必须用驼峰式
*/
'vue/prop-name-casing': 'off',
/**
* <component> 必须有绑定的组件
*/
'vue/require-component-is': 'error',
/**
* props 如果不是 required 的字段,必须有默认值
*/
'vue/require-default-prop': 'off',
/**
* 必须直接使用 export default 导出组件
*/
'vue/require-direct-export': 'off',
/**
* emits 必须为函数
*/
'vue/require-emit-validator': 'off',
/**
* emits 属性必须包含 $emit() 中的值
*/
'vue/require-explicit-emits': 'error',
/**
* 必须导出 expose
*/
'vue/require-expose': 'off',
/**
* 组件必须包含 name 属性
*/
'vue/require-name-property': 'off',
/**
* props 的取值必须是基本类型的构造函数,而不是字符串
*/
'vue/require-prop-type-constructor': 'off',
/**
* prop 必须有类型限制
*/
'vue/require-prop-types': 'off',
/**
* render 函数必须有返回值
*/
'vue/require-render-return': 'error',
/**
* this.$slots.default 必须被当作方法使用
*/
'vue/require-slots-as-functions': 'error',
/**
* transition 内部必须有条件指令
*/
'vue/require-toggle-inside-transition': 'error',
/**
* v-for 指令的元素必须有 v-bind:key
*/
'vue/require-v-for-key': 'error',
/**
* prop 的默认值必须匹配它的类型
*/
'vue/require-valid-default-prop': 'off',
/**
* 计算属性必须有返回值
*/
'vue/return-in-computed-property': 'error',
/**
* emits 中的方法必须有返回值
*/
'vue/return-in-emits-validator': 'error',
/**
* script setup 中定义的变量必须使用
*/
'vue/script-setup-uses-vars': 'error',
/**
* props 的键名必须排好序
*/
'vue/sort-keys': 'off',
/**
* class 的值必须按字母排序
*/
'vue/static-class-names-order': 'off',
/**
* 禁止在模版中用 this
*/
'vue/this-in-template': 'error',
/**
* 当一个节点上出现两个 v-on:click 时,其中一个必须为 exact
*/
'vue/use-v-on-exact': 'error',
/**
* 支持在模版中使用 eslint-disable-next-line 等注释
*/
'vue/comment-directive': 'error',
/**
* 使用缩写的 : 而不是 v-bind:
*/
'vue/v-bind-style': 'error',
/**
* 禁止在 v-on 的事件名使用横杠
*/
'vue/v-on-event-hyphenation': 'error',
/**
* 禁止在 v-on 的值中调用函数
*/
'vue/v-on-function-call': 'error',
/**
* 使用缩写的 @click 而不是 v-on:click
*/
'vue/v-on-style': 'error',
/**
* 使用缩写的 #one 而不是 v-slot:one
*/
'vue/v-slot-style': 'off',
/**
* defineEmits 必须使用合法的语法
*/
'vue/valid-define-emits': 'off',
/**
* defineProps 必须使用合法的语法
*/
'vue/valid-define-props': 'off',
/**
* 禁止调用 Vue.nextTick 或 vm.$nextTick 时不使用 await
*/
'vue/valid-next-tick': 'error',
/**
* template 的根节点必须合法
*/
'vue/valid-template-root': 'error',
/**
* v-bind 指令必须合法
*/
'vue/valid-v-bind': 'error',
/**
* v-bind:foo.sync 指令必须合法
*/
'vue/valid-v-bind-sync': 'error',
/**
* v-cloak 指令必须合法
*/
'vue/valid-v-cloak': 'error',
/**
* v-else 指令必须合法
*/
'vue/valid-v-else': 'error',
/**
* v-else-if 指令必须合法
*/
'vue/valid-v-else-if': 'error',
/**
* v-for 指令必须合法
*/
'vue/valid-v-for': 'error',
/**
* v-html 指令必须合法
*/
'vue/valid-v-html': 'error',
/**
* v-if 指令必须合法
*/
'vue/valid-v-if': 'error',
/**
* v-is 指令必须合法
*/
'vue/valid-v-is': 'error',
/**
* v-model 指令必须合法
*/
'vue/valid-v-model': 'error',
/**
* v-on 指令必须合法
*/
'vue/valid-v-on': 'error',
/**
* v-once 指令必须合法
*/
'vue/valid-v-once': 'error',
/**
* v-pre 指令必须合法
*/
'vue/valid-v-pre': 'error',
/**
* v-show 指令必须合法
*/
'vue/valid-v-show': 'error',
/**
* v-slot 指令必须合法
*/
'vue/valid-v-slot': 'error',
/**
* v-text 指令必须合法
*/
'vue/valid-v-text': 'error',
/**
* 标签中没有内容需要写成单标签
*/
'vue/html-self-closing': 'off',
/**
* 标签属性过长需要换行
*/
'vue/max-attributes-per-line': 'off',
/**
* 标签名称必须是多个单词
*/
'vue/multi-word-component-names': 'off',
/**
* 元素内容必须换行
*/
'vue/singleline-html-element-content-newline': 'off'
},
};