-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
38 lines (37 loc) · 960 Bytes
/
.eslintrc.json
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
{
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"no-console": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"no-unused-vars": "error",
"no-use-before-define": "off",
"no-plusplus": "off",
"no-undef": "off",
"no-restricted-syntax": "off",
"no-await-in-loop": "off",
"no-continue": "off",
"no-shadow": "off",
"no-prototype-builtins": "off",
"no-else-return": "off",
"no-useless-escape": "off",
"prefer-destructuring": 0,
"consistent-return": 0,
"no-multiple-empty-lines": [
"error",
{ "max": 1, "maxBOF": 0, "maxEOF": 0 }
],
"max-len": 0,
"radix": 0,
"no-buffer-constructor": 0,
"no-useless-concat": 0,
"object-shorthand": 0
},
"parserOptions": {
"ecmaVersion": 2018
}
}