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
| module.exports = {
| root: true,
| env: {
| browser: true,
| es6: true,
| node: true,
| jest: true,
| },
| plugins: ['vue', 'vuejs-accessibility'],
| extends: ['plugin:vue/vue3-essential', '@vue/airbnb'],
| rules: {
| 'vue/script-setup-uses-vars': 'off',
| 'vue/custom-event-name-casing': 'off',
| 'vuejs-accessibility/rule-name': 'off',
| 'vue/no-deprecated-slot-attribute': 'off',
| 'vue/experimental-script-setup-vars': 'off',
| 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
| 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
| 'no-shadow': 0,
| 'no-plusplus': 0, // 禁止使用++,--
| 'guard-for-in': 0,
| 'no-extra-semi': 0, // 和prettier冲突
| 'import/extensions': 0, // import不需要写文件扩展名
| semi: ['error', 'never'], // 无分号
| 'import/no-unresolved': 0,
| 'no-restricted-syntax': 0,
| 'no-underscore-dangle': 0, // 无下划线
| 'no-restricted-syntax': 0,
| 'consistent-return': 'off',
| 'max-len': ['error', { code: 200 }],
| 'no-use-before-define': 'off',
| 'no-prototype-builtins': 'off',
| 'class-methods-use-this': 'off',
| 'template-curly-spacing': 'off',
| 'arrow-parens': ['error', 'as-needed'],
| 'vue/multi-word-component-names': 'off',
| 'comma-dangle': ['error', 'only-multiline'],
| 'no-param-reassign': ['error', { props: false }],
| 'vuejs-accessibility/click-events-have-key-events': 'off',
| 'import/no-extraneous-dependencies': ['error', { devDependencies: ['script/**/*.js'] }],
| indent: [
| 'warn',
| 2,
| {
| ignoredNodes: ['TemplateLiteral'],
| SwitchCase: 1,
| },
| ],
| 'object-curly-newline': [
| 'error',
| {
| ImportDeclaration: 'never',
| },
| ],
| },
| parserOptions: {
| parser: '@babel/eslint-parser',
| },
| }
|
|