forked from davidbonnet/astring
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
49 lines (49 loc) · 1.12 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
{
"plugins": ["import"],
"extends": ["eslint:recommended", "plugin:import/errors", "prettier"],
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 13,
"sourceType": "module"
},
"globals": {
"console": true,
"global": true,
"module": true,
"process": true,
"require": true,
"window": true,
"__dirname": true
},
"overrides": [
{
"files": ["src/tests/fixtures/**/*.js"],
"rules": {
"constructor-super": 0,
"getter-return": 0,
"no-cond-assign": 0,
"no-constant-condition": 0,
"no-control-regex": 0,
"no-debugger": 0,
"no-dupe-class-members": 0,
"no-dupe-keys": 0,
"no-duplicate-case": 0,
"no-empty": 0,
"no-inner-declarations": 0,
"no-irregular-whitespace": 0,
"no-redeclare": 0,
"no-sparse-arrays": 0,
"no-undef": 0,
"no-unreachable": 0,
"no-unsafe-negation": 0,
"no-unused-labels": 0,
"no-unused-vars": 0,
"no-useless-escape": 0,
"no-var": 0,
"no-loss-of-precision": 0
}
}
]
}