-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
43 lines (43 loc) · 1010 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
39
40
41
42
43
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-var": "error",
"prefer-const": "warn",
"eol-last": "off",
"key-spacing": "warn",
"no-unused-vars": "off",
"no-console": "off",
"no-undef": "off",
"import/no-extraneous-dependencies": "off",
"no-empty": "off",
"no-eq-null": "off",
"no-plusplus": "off",
"no-empty-function": "off",
"consistent-return": "off",
"radix": "off",
"max-len": "off",
"no-underscore-dangle": "off",
"no-prototype-builtins": "off",
"import/prefer-default-export" : "off",
"null" : "off",
"class-methods-use-this" : "off",
"no-return-await": "off",
"import/named" : "off"
}
}