-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
.dist.eslintrc
47 lines (47 loc) · 1016 Bytes
/
.dist.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
39
40
41
42
43
44
45
46
47
{
"extends": ["eslint:recommended"],
"env": {
"node": false,
"browser": true,
"amd": true,
"es6": true,
"commonjs": true
},
"plugins": ["compat"],
"rules": {
"compat/compat": "error",
"no-redeclare": "off",
"no-func-assign": "off",
"no-unused-vars": "off",
"no-undef": "off",
"no-prototype-builtins": "off",
"no-empty": "off",
"no-fallthrough": "off",
"no-cond-assign": "off",
"no-constant-condition": "off",
"no-useless-escape": "off",
"getter-return": "off",
"no-control-regex": "off"
},
"globals": {
},
"settings": {
"polyfills": [
"Array.from",
"Object.getOwnPropertyDescriptors",
"Object.getOwnPropertySymbols",
"Promise",
"Promise.race",
"Promise.reject",
"Promise.resolve",
"Reflect",
"Symbol.for",
"Symbol.iterator",
"Symbol.prototype",
"Symbol.species",
"Symbol.toPrimitive",
"Symbol.toStringTag",
"Uint8Array"
]
}
}