-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
71 lines (71 loc) · 1.93 KB
/
.eslintrc.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
/*
* @Author: Mr-Nobody-li
* @Date: 2022-08
* @LastEditors: Mr-Nobody-li
* @LastEditTime: 2022-08
* @Description: eslint
*/
module.exports = {
root: true,
env: {
node: true
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'plugin:@typescript-eslint/recommended',
'prettier'
],
plugins: ['@typescript-eslint'],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module',
jsxPragma: 'React',
ecmaFeatures: {
jsx: true
}
},
rules: {
'no-undef': 'off',
// 数组函数需要有返回值
'array-callback-return': 'error',
// 函数复杂度不能超过20
complexity: ['error', { max: 20 }],
// 使用 === 而不是 ==
eqeqeq: ['error', 'smart'],
// 多个运算符需要用()分隔
// 'no-mixed-operators': 'error',
// 当存在更简单的替代方案时,不允许使用三元运算符
'no-unneeded-ternary': 'error',
// 强制块语句的最大可嵌套深度
'max-depth': ['error', 4],
// 限制函数定义中最大参数个数
'max-params': ['error', 3],
// 强制回调函数最大嵌套深度
'max-nested-callbacks': [1, 3],
// 强制文件的最大行数
'max-lines': ['error', 500],
// 建议使用const
'prefer-const': [
'error',
{
// 在解构中,所有变量都应该是const
destructuring: 'all'
}
],
// 使用点号
'dot-notation': 'error',
// 适配eslint 未使用的变量
'@typescript-eslint/no-unused-vars': 'error',
// 允许非空断言
'@typescript-eslint/no-non-null-assertion': 'off',
// 允许自定义模块和命名空间
'@typescript-eslint/no-namespace': 'off',
// 允许对this设置alias
'@typescript-eslint/no-this-alias': 'off',
// 允许使用any类型
'@typescript-eslint/no-explicit-any': ['off']
}
}