-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
50 lines (50 loc) · 1.05 KB
/
.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
48
49
50
{
"plugins": ["import", "prettier"],
"extends": [
"airbnb-base",
"prettier"
],
"settings": {
"import/resolver": {
"node": {
"extensions": [".js"]
}
}
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jquery": false
},
"rules": {
"no-console": 0,
"no-debugger": 1,
"no-lone-blocks": 2,
"guard-for-in":0,
"no-restricted-syntax":"off",
"prettier/prettier": [
"error",
{
"singleQuote": false
}
],
"consistent-return":"off",
"no-use-before-define":"off",
"no-plusplus":"off",
"prefer-destructuring" :"off",
"no-useless-constructor":"off",
"constructor-super":"off",
"no-underscore-dangle":"off",
"no-this-before-super":"off",
"default-case":"off",
"no-case-declarations":"off",
"no-bitwise":"off",
"no-param-reassign":"off",
"no-shadow":"off"
},
"globals": {
"Atomics": true,
"SharedArrayBuffer": true
}
}