-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc
64 lines (62 loc) · 1.65 KB
/
.eslintrc
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
// 规则汇总:http://eslint.org/docs/rules/
{
"version": "0.1.0",
"rules": {
// Possible Errors
"comma-dangle": [2, "never"],
"no-console": 0,
"no-debugger": 1,
"no-extra-semi": 0,
"no-inner-declarations": 2,
"no-regex-spaces": 1,
"valid-typeof": 2,
// Best Practices
"default-case": 1,
"no-eq-null": 2,
"no-implied-eval": 2,
"no-invalid-this": 1,
"no-multi-spaces": [1, {
exceptions: {
"VariableDeclarator": true,
"ImportDeclaration": true
}
}],
"no-with": 2,
// other
"comma-spacing": [1, {
"before": false,
"after": true
}],
"space-infix-ops": [2, {"int32Hint": true}],
"indent": [2, 4, {"SwitchCase": 1}],
"quotes": [1, "single"],
"linebreak-style": [2, "unix"],
"max-len": [2, 140, 4,
{
"ignoreComments": true,
"ignoreUrls": true
}
]
},
"env": {
"browser": true,
"node": true,
"amd": true,
"commonjs": true,
"jquery": true
},
// 如果有其他全局变量,可自行在对应js文件里设置:/*global var1, var2*/
"globals": {
"$": true,
"_": true,
"TOP": false,
"jQuery": false,
"KISSY": false,
"Zepto": false,
"Angular": false,
"Backbone": false,
"React": false,
"Highcharts": false,
},
"extends": "eslint:recommended" //将按ECMAScript规范推荐的规则都merge进来
}