-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
36 lines (36 loc) · 1011 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
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"camelcase": ["off"],
"class-methods-use-this": ["warn"],
"comma-dangle": ["error"],
"eqeqeq": ["off"],
"linebreak-style": ["off"],
"max-len": ["warn"],
"no-array-constructor": ["warn"],
"no-bitwise": ["off"],
"no-console": ["error"], // eslint-disable-line no-console if you wish to deliberately use console
"no-continue": ["off"],
"no-new-object": ["off"],
"no-param-reassign": ["off"],
"no-plusplus": ["off"],
"no-restricted-syntax": ["warn"],
"no-shadow": ["off"],
"no-underscore-dangle": ["off"],
"prefer-const": ["off"],
"quotes" :["off"],
"max-classes-per-file": ["off"],
"strict": ["off"]
}
}