-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
37 lines (36 loc) · 1.04 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
{
"env": {
"browser": true,
"node": true
},
"globals": {
"modules": false,
"BENCHMARK": false,
"IN_EL": false,
"IN_BROWSER": false,
"IN_WORKER": false,
"IN_NODE": false,
"IN_NW": false,
"$type": false,
"$keys": false,
"$some": false,
"$args": false,
"$valid": false,
"unescape": false,
"escape": false
},
"rules": {
"strict": [0],
"new-cap": [0],
"no-shadow": [0],
"camelcase": [0],
"key-spacing": [0],
"dot-notation": [0],
"comma-dangle": [0],
"comma-spacing": [0],
"no-multi-spaces": [0],
"no-unused-vars": [1, { "vars": "all", "args": "after-used"} ],
"no-underscore-dangle": [0],
"no-use-before-define": [0]
}
}