-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
50 lines (50 loc) · 1.01 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
{
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017,
"experimentalObjectRestSpread": true
},
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"env": {
"es6": true,
"node": true,
"jest": true
},
"rules": {
"eqeqeq": 2,
"global-require": 2,
"no-alert": 2,
"no-caller": 2,
"no-console": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-floating-decimal": 2,
"no-implicit-globals": 2,
"no-labels": 2,
"no-loop-func": 2,
"no-new-require": 2,
"no-path-concat": 2,
"no-useless-rename": 2,
"no-var": 2,
"no-shadow": 2,
"prefer-const": 2,
"prefer-spread": 2,
"strict": 2,
"valid-jsdoc": 2,
"no-prototype-builtins": 0,
"no-else-return": 0,
"func-names": 0,
"prefer-rest-params": 0,
"no-new-wrappers": 0,
"symbol-description": 0,
"no-nested-ternary": 0,
"consistent-return": 0,
"radix": 0,
"no-param-reassign": 0,
"class-methods-use-this": 0,
"no-use-before-define": 0,
"no-restricted-syntax": 0,
"new-cap": 0,
"no-bitwise": 0
}
}