-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.js
64 lines (63 loc) · 1.85 KB
/
base.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
module.exports = {
extends: ['airbnb-base', 'plugin:prettier/recommended'],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module'
},
env: {
node: true,
jest: true,
browser: true
},
rules: {
'no-new': 'off',
// 使用 new 构造函数必须储存在变量中
'no-shadow': 'off',
// 禁止变量共享相同名称
'no-bitwise': 'off',
// 位运算符
'func-names': 'off',
// 给函数表达式名称
'no-console': 'off',
// 禁止console
'no-plusplus': 'off',
// 不允许使用一元运算符
'no-debugger': 'off',
// 不允许使用debugger
'default-case': 'off',
// switch语句都有一个default
'prefer-template': 'off',
// 在--fix命令行上的选项可以自动修复
'consistent-return': 'off',
// 强制函数返回指定类型的值
'no-param-reassign': 'off',
// 赋值函数的参数
'no-nested-ternary': 'off',
// 嵌套三元表达式
'no-underscore-dangle': 'off',
// 悬挂下划线在标识符的开头或末尾是下划线
'no-unused-expressions': 'off',
// 对程序状态没有影响的未使用表达式表示逻辑错误
'no-restricted-globals': 'off',
// 禁用特定全局变量
'class-methods-use-this': 'off',
//
'no-use-before-define': 'off',
// 没有调用的方法 因加上静态前缀
'prefer-destructuring': ['error', { object: true, array: false }],
// 强制解构
/* *************************************
* eslint-plugin-import
************************************* */
'import/order': 'off',
// 导入顺序
'import/extensions': 'off',
// 扩展名
'import/no-unresolved': 'off',
// 导入相关
'import/prefer-default-export': 'off',
// 默认导出
'import/no-extraneous-dependencies': 'off'
// 外部依赖相关
}
}