-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
66 lines (66 loc) · 1.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021,
"requireConfigFile": false
},
"env": {
"es2021": true,
"node": true
},
"extends": [
"airbnb-base",
"prettier"
],
"rules": {
"no-tabs": 0,
"indent": [
2,
"tab",
{
"SwitchCase": 1,
"VariableDeclarator": 1
}
],
"arrow-body-style": 0,
"comma-dangle": 0,
"import/extensions": 0,
"arrow-parens": [
2,
"as-needed"
],
"import/no-mutable-exports": 0,
"import/prefer-default-export": 0,
"import/first": 0,
"object-curly-newline": [
"error",
{
"consistent": true
}
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"camelcase": 0,
"max-len": 0,
"one-var": 0,
"one-var-declaration-per-line": 0,
"no-param-reassign": 0,
"prefer-destructuring": 0,
"no-multi-assign": 0,
"eol-last": 0,
"no-await-in-loop": 0,
"no-console": 0
}
}