-
Notifications
You must be signed in to change notification settings - Fork 498
/
.eslintrc.js
41 lines (40 loc) · 1.3 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
module.exports = {
root: true,
env : {
node: true,
es6 : true
},
extends: ['eslint-config-egg'],
globals: {
'document': true
},
rules: {
'semi': 0,
// 数组和对象键值对最后一个逗号, never参数:不能带末尾的逗号, always参数:必须带末尾的逗号,
// always-multiline:多行模式必须带逗号,单行模式不能带逗号
'comma-dangle': [1, 'always-multiline'],
// 指定数组的元素之间要以空格隔开(, 后面), never参数:[ 之前和 ] 之后不能带空格,always参数:[ 之前和 ] 之后必须带空格
'array-bracket-spacing': [2, 'never'],
'no-unused-vars' : 'off', // 未使用变量
// "generator-star-spacing": ["error", { "before": false, "after": true }],
'valid-jsdoc': ['error', {
// 取消限制注释中必须使用 @return 标签替代 @returns标签
prefer: {
// returns: 'return',
},
}],
"no-multi-spaces": ["error", {
exceptions: {
"ImportDeclaration" : true,
"VariableDeclarator": true,
"Property" : false,
"ignoreEOLComments" : true
}
}],
//对象字面量中冒号的前后空格
"key-spacing": ["error", {
"beforeColon": true,
"afterColon" : true
}]
},
}