-
Notifications
You must be signed in to change notification settings - Fork 564
/
.eslintrc.js
75 lines (73 loc) · 2.66 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
/**
* 该 ESLint 配置扩展自 eslint-config-o2team-wx
* https://www.npmjs.com/package/eslint-config-o2team-wx
* o2team-wx 这一套规则是参考了 StandardJS 和 Airbnb 的 JS 规范,然后结合业务中的最佳实践整理输出的。
*/
module.exports = {
'extends': 'o2team-wx',
'plugins': [
'html'
],
'settings': {
'html/html-extensions': ['.wxml']
},
'rules': {
'no-restricted-globals': ['error', 'Promise'], // 禁止直接使用原生Promise,必须引入lib
'newline-per-chained-call': 'off',
'eqeqeq': 'off',
'indent': ['error', 4, { SwitchCase: 1 }],
'prefer-rest-params': 'off',
'prefer-template': 'off',
'no-else-return': 'off',
'no-nested-ternary': 'off',
'brace-style': 'off',
'semi': 'off',
'camelcase': ['off', { properties: 'never' }], // ESLint 配置问题,暂时不强制所有变量名都用驼峰式命名
'array-callback-return': 'off', // 暂时关闭
'prefer-const': 'warn',
'no-mixed-operators': 'off',
'callback-return': 'warn',
'class-methods-use-this': 'warn',
// 不能直接使用以下 api,如果修改该 api 的封装库,可以在代码加上以下注释忽略检查:
// /* eslint-disable no-restricted-properties */
// [your code]
// /* eslint-enable no-restricted-properties */
'no-restricted-properties': [2, {
'object': 'wx',
'property': 'navigateTo',
'message': 'Please use this.$goto!!!'
}, {
'object': 'wx',
'property': 'redirectTo',
'message': 'Please use this.$goto!!!'
}, {
'object': 'wx',
'property': 'switchTab',
'message': 'Please use this.$goto!!!'
}, {
'object': 'wx',
'property': 'request',
'message': 'Please use common/request lib!!!'
}, {
'object': 'wx',
'property': 'connectSocket',
'message': 'Please use common/request lib!!!'
}, {
'object': 'wx',
'property': 'setStorage',
'message': 'Please use common/localStorage lib!!!'
}, {
'object': 'wx',
'property': 'setStorageSync',
'message': 'Please use common/localStorage lib!!!'
}, {
'object': 'wx',
'property': 'getStorage',
'message': 'Please use common/localStorage lib!!!'
}, {
'object': 'wx',
'property': 'getStorageSync',
'message': 'Please use common/localStorage lib!!!'
}]
}
}