-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (36 loc) · 760 Bytes
/
.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
{
"root": true,
"env": {
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": ["prettier", "import", "jest"],
"extends": [
"airbnb-base",
"prettier",
"plugin:prettier/recommended",
"plugin:import/recommended",
"eslint:recommended"
],
"rules": {
// Enabled
"prettier/prettier": 2,
// Disabled
"consistent-return": 0,
"func-names": 0,
"no-case-declarations": 0,
"no-console": 0,
"no-else-return": 0,
"no-underscore-dangle": 0,
"arrow-body-style": 0,
"prefer-arrow-callback": 0,
"import/no-unresolved": 0,
// "sort-imports": 2,
"import/prefer-default-export": 0,
"jest/expect-expect": 0
}
}