-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dist.eslintrc.json
More file actions
41 lines (41 loc) · 889 Bytes
/
.dist.eslintrc.json
File metadata and controls
41 lines (41 loc) · 889 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
32
33
34
35
36
37
38
39
40
41
{
"extends": ["eslint:recommended", "plugin:compat/recommended"],
"env": {
"node": false,
"browser": true,
"amd": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": "2017"
},
"plugins": ["compat"],
"rules": {
"compat/compat": "error",
"no-func-assign": "off",
"no-unused-vars": "off",
"no-redeclare": "off",
"no-empty": "off",
"no-fallthrough": "off",
"no-cond-assign": "off",
"no-constant-condition": "off",
"no-control-regex": "off",
"no-useless-escape": "off",
"no-extra-semi": "off",
"no-console": "off",
"no-sparse-arrays": "off",
"no-undef": "off",
"no-prototype-builtins": "off",
"no-unsafe-finally": "off",
"no-inner-declarations": "off",
"getter-return": "off"
},
"globals": {
},
"settings": {
"polyfills": [
"performance",
"WeakRef"
]
}
}