forked from OriginalCpp/Would-You-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
45 lines (45 loc) · 1.09 KB
/
.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
44
45
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": ["airbnb-base"],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"no-unused-vars": "off",
"no-console": "off",
"no-empty": "off",
"no-constant-condition": "off",
"import/no-dynamic-require": "off",
"global-require": "off",
"no-restricted-syntax": "off",
"eqeqeq": "off",
"max-len": "off",
"no-param-reassign": "off",
"linebreak-style": "off",
"no-shadow": "off",
"consistent-return": "off",
"default-case": "off",
"no-case-declarations": "off",
"guard-for-in": "off",
"prefer-const": "off",
"prefer-destructuring": "off",
"no-loop-func": "off",
"no-useless-return": "off",
"no-return-assign": "off",
"no-lonely-if": "off",
"for-direction": "off",
"no-eval": "off",
"arrow-body-style": "off",
"no-mixed-operators": "off",
"no-inner-declarations": "off",
"import/no-absolute-path": "off",
"no-underscore-dangle": "off",
"no-bitwise": "off",
"camelcase":"off",
"no-var": "off"
}
}