-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
34 lines (34 loc) · 865 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
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": "airbnb-base",
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"linebreak-style": 0,
"import/newline-after-import": 0,
"import/no-extraneous-dependencies": 0,
"no-use-before-define": 0,
"no-console": 0,
"consistent-return": 0,
"object-curly-newline": 0,
"no-useless-constructor": 0,
"max-len": 0,
"no-unused-vars": 0,
"object-shorthand": 0,
"func-names": 0,
"no-underscore-dangle": 0,
"no-useless-catch": 0,
"arrow-body-style": 0,
"prefer-destructuring": 0,
"one-var": 0,
"prefer-template": 0,
"no-param-reassign": 0
}
}