-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.cjs
85 lines (84 loc) · 2.27 KB
/
.eslintrc.cjs
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path');
module.exports = {
root: true,
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: 'module',
ecmaVersion: 2020,
ecmaFeatures: {
jsx: true,
},
},
env: {
'browser': true,
'node': true,
'vue/setup-compiler-macros': true,
},
// 要主动启用
// plugins": ["@typescript-eslint"] 中包含的检查项 要多于 extends": ["plugin:@typescript-eslint/recommended"]
plugins: ['@typescript-eslint'],
// 需要覆盖
extends: [
'airbnb-base',
'plugin:@typescript-eslint/recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:vue/vue3-recommended',
'plugin:prettier/recommended',
],
rules: {
'prettier/prettier': 1,
'no-console': 1,
// vue的一些覆盖配置
'vue/require-default-prop': 0,
'vue/singleline-html-element-content-newline': 0,
'vue/max-attributes-per-line': 0,
'vue/multi-word-component-names': 0,
'vue/no-useless-template-attributes': 0,
// vue的一些额外配置
'vue/custom-event-name-casing': [2, 'camelCase'],
'vue/no-v-text': 1,
'vue/padding-line-between-blocks': 1,
'vue/require-direct-export': 1,
// ts的一些覆盖配置
// Allow @ts-ignore comment
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-unused-vars': 1,
'@typescript-eslint/no-empty-function': 1,
'@typescript-eslint/no-explicit-any': 0,
// 避免enum的循环引用
'no-shadow': 0,
'@typescript-eslint/no-shadow': 2,
// 临时解决 defindModel问题
'no-undef': 0,
// import的一些配置
'import/extensions': [
2,
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'import/no-extraneous-dependencies': 0,
// airbnb-base中的一些配置
// 生产环境需要启用
'no-debugger': 0,
'no-param-reassign': 0,
'no-nested-ternary': 'off',
'prefer-regex-literals': 0,
'camelcase': 0,
},
// 用来解析@
settings: {
'import/resolver': {
typescript: {
project: path.resolve(__dirname, './tsconfig.json'),
},
},
},
};