-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
40 lines (38 loc) · 920 Bytes
/
.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
{
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"strict": [0],
"no-new": [0],
"new-cap": [0],
"no-empty": [0],
"no-shadow": [0],
"camelcase": [0],
"key-spacing": [0],
"dot-notation": [0],
"comma-dangle": [0],
"no-console": [0],
"no-multi-str": [0],
"no-multi-spaces": [0],
"no-control-regex": [0],
"no-unused-vars": [1, { "vars": "all", "args": "after-used"} ],
"no-underscore-dangle": [0],
"no-use-before-define": [0],
"no-inner-declarations": [0]
},
"globals": {
"unescape": false,
"escape": false,
"google": false
}
}