-
Notifications
You must be signed in to change notification settings - Fork 24
/
.eslintrc.js
36 lines (36 loc) · 1.11 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
module.exports = {
"extends": "eslint-config-sprite",
globals: {
getApp: true,
wx: true,
Page: true,
},
rules: {
// 'import/no-dynamic-require': 'off',
// 'semi-style': ["error", "first"],
// // 禁止一个文件中在忽略空行和注释之后行数超过1500行
// 'max-lines': ['error', {
// max: 1500,
// skipBlankLines: true,
// skipComments: true
// }],
// 'no-loop-func': 'off',
// 'guard-for-in': 'off',
// 'no-multi-assign': 'warn',
// 'max-params': ['warn', 10],
// 'prefer-const': ['error', {destructuring: 'all'}],
// // 因为我们可能模块内定义一个 decorate,这个 decorate 有可能和变量同名
// 'no-shadow': 'warn',
// // 因为函数签名中可能声明未使用的变量
'no-unused-vars': ['warn', {args: "none"}],
// 'prefer-destructuring': 'off',
// 'object-curly-newline': 'off',
// 'import/prefer-default-export': 'off',
// // 'no-restricted-syntax': [
// // 'error',
// // 'ForInStatement',
// // 'LabeledStatement',
// // 'WithStatement',
// // ]
},
}