-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy path.eslintrc
More file actions
31 lines (31 loc) · 587 Bytes
/
.eslintrc
File metadata and controls
31 lines (31 loc) · 587 Bytes
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
{
"env": {
"browser": false,
"node": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"rules": {
"no-unused-vars": [
"error",
{ "vars": "all", "args": "after-used", "ignoreRestSiblings": false }
],
"no-constant-condition": 0,
"no-underscore-dangle": 0,
"camelcase": 0,
"quotes": 0,
"no-process-exit": 0,
"no-empty": 0,
"new-cap": [
2,
{
"newIsCap": true,
"capIsNew": true,
"newIsCapExceptions": [],
"capIsNewExceptions": []
}
]
}
}