-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
36 lines (36 loc) · 1.02 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
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true
},
"extends": ["airbnb-base"],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"linebreak-style": ["error", "windows"],
"indent": ["off"],
"no-console": ["off"],
"no-plusplus": ["off"],
"dot-notation": ["off"],
"no-unused-vars": ["warn"],
"no-underscore-dangle": ["off"],
"no-param-reassign": ["off"],
"no-empty": ["off"],
"prefer-const": ["warn"],
"class-methods-use-this": ["off"],
"max-len": ["off", { "code": 140 }],
"no-continue": ["off"],
"no-multiple-empty-lines": ["off"],
"import/newline-after-import": ["off"],
"global-require": ["off"],
"import/no-dynamic-require": ["off"],
"no-await-in-loop": "off",
"consistent-return": "off",
"object-curly-newline": "off",
"comma-dangle": "off",
"operator-linebreak": "off"
}
}