-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy path.eslintrc.js
67 lines (65 loc) · 1.88 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
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jquery": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
// 错误
"array-callback-return": "error",
"brace-style": ["error", "1tbs", {
"allowSingleLine": true
}],
"comma-dangle": [2, "only-multiline"],
"comma-spacing": ["error"],
"comma-style": ["error"],
"indent": ["error", 4, {
"SwitchCase": 1
}],
"key-spacing": ["error"],
"keyword-spacing": ["error"],
"lines-around-comment": ["error"],
"new-cap": ["error"],
"no-empty-function": ["error"],
"no-extra-bind": "error",
"no-floating-decimal": "error",
"no-multi-spaces": ["error"],
"no-multiple-empty-lines": ["error", {
"max": 2,
"maxBOF": 0,
"maxEOF": 1
}],
"no-self-compare": "error",
"no-useless-concat": "error",
"no-useless-escape": "error",
"no-whitespace-before-property": "error",
"quote-props": ["error", "consistent"],
"quotes": ["error", "single", {
"allowTemplateLiterals": true,
"avoidEscape": true
}],
"semi-spacing": ["error"],
"space-before-blocks": ["error"],
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never"
}],
"space-infix-ops": ["error"],
"spaced-comment": ["error", "always"],
"valid-jsdoc": ["error", {
"requireReturn": false
}],
// 警告
"dot-notation": ["warn"],
"no-shadow": ["warn"],
"no-trailing-spaces": ["warn", {
"skipBlankLines": true
}]
}
};