-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
82 lines (80 loc) · 3.04 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
72
73
74
75
76
77
78
79
80
81
82
module.exports = {
root: true,
env: {
browser: true,
node: true,
es6: true, // 使用require就不会报错了
commonjs: true
},
// 配置解析器
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 6,
sourceType: 'module'
},
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
// 全局变量
globals: {
__DEV__: true,
__WECHAT__: true,
__ALIPAY__: true,
App: true,
Page: true,
Component: true,
Behavior: true,
wx: true,
getApp: true,
getCurrentPages: true
},
/**
* "off" 或 0 - 关闭规则
* "warn" 或 1 - 开启规则,使用警告级别的错误:warn (不会导致程序退出),
* "error" 或 2 - 开启规则,使用错误级别的错误:error (当被触发的时候,程序会退出)
*/
rules: {
// Possible Errors
'getter-return': 2,
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-empty': ['warn', { allowEmptyCatch: true }],
'use-isnan': 2, // 使用 isNaN 判断 NaN
'no-cond-assign': 2, // 禁止条件表达式中出现赋值操作符
'no-dupe-keys': 2, // 禁止对象字面量中出现重复的key
'no-dupe-args': 2, // 禁止 function 定义中出现重名参数
'no-extra-boolean-cast': 2, // 禁止不必要的布尔转换
'no-extra-semi': 2, // 禁止不必要的分号
'no-regex-spaces': 2, // 禁止正则表达式字面量中出现多个空格
// Best Practices
'array-callback-return': 2, // Array return 特别注意 map 和 forEach 的区别
'no-caller': 2, // 禁止使用arguments.callee
'no-alert': 2, // 不允许使用alert,confirm,prompt
// 'no-unused-expressions': ["error", { "allowTaggedTemplates": true }], // 禁止出现未使用过的表达式
// Variables
'no-delete-var': 2, // 不允许对变量进行delete操作
'no-shadow-restricted-names': 2, // 禁止将标识符定义为受限的名字
'no-use-before-define': 2, // 禁止在变量定义之前使用它们
'no-undef': 2, // 禁止未声明的变量
// Node.js and CommonJS
'no-process-exit': 'off',
'no-useless-escape': 'off',
// Stylistic Issues
'no-trailing-spaces': 2, // 禁用行位空白
// 'max-len': ['error', { code: 180 }], // 强制行的最大长度
// 'max-statements-per-line': ['error', { max: 1 }], // 强制每一行中所允许的最大语句数量
'max-lines': ['error', 1000], // 文件最大行数
'max-lines-per-function': ['error', 200], // 一个函数的最大行数
// ECMAScript 6
'no-const-assign': 2, // 禁止修改使用const
'no-new-symbol': 2,
'prefer-const': [
'warn',
{
destructuring: 'all'
}
],
'no-duplicate-imports': 2, // 禁止重复模块导入
'no-dupe-class-members': 2, // 禁止类成员中出现重复的名字
'require-yield': 2, // 要求 generator 函数内有 yield
'constructor-super': 2 // 验证super()in构造函数中的调用
}
}