-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
50 lines (50 loc) · 959 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
40
41
42
43
44
45
46
47
48
49
50
{
"env": {
"node": true
},
"extends": [
"airbnb-typescript/base",
"plugin:jest/all",
"plugin:node/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"project": "tsconfig-base.json",
"sourceType": "script"
},
"plugins": [
"@typescript-eslint/eslint-plugin",
"jest",
"node"
],
"rules": {
"@typescript-eslint/no-use-before-define": [
"error",
{
"functions": false
}
],
"@typescript-eslint/semi": [
"error",
"never"
],
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
],
"no-return-await": "off",
"no-use-before-define": [
"error",
{
"functions": false
}
],
"node/no-unsupported-features/es-syntax": "off",
"node/no-missing-import": "off"
}
}