-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc
82 lines (81 loc) · 1.87 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Copyright (C) 2022, vDL Digital Ventures GmbH <[email protected]>
*
* SPDX-License-Identifier: MIT
*/
{
"env":{
"node":true,
"jasmine":true,
"jest":true,
"es2020":true
},
"parser":"@typescript-eslint/parser",
"parserOptions":{
"ecmaVersion":2020,
"sourceType":"module"
},
"plugins":[
"@typescript-eslint",
"prettier"
],
"extends":[
"airbnb/base",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"prettier",
"plugin:prettier/recommended"
],
"rules":{
"prettier/prettier":"warn",
"import/extensions":"off",
"import/no-cycle":[
0,
{
"ignoreExternal":true
}
],
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define":[
"error",
{
"functions":false,
"classes":false,
"variables":true
}
],
"global-require":"warn",
"import/no-unresolved":"warn",
"@typescript-eslint/explicit-function-return-type":"off",
"@typescript-eslint/explicit-module-boundary-types":"off",
"@typescript-eslint/no-explicit-any":"off",
"@typescript-eslint/no-non-null-assertion":"off",
"class-methods-use-this":"off",
"no-console":"off",
"lines-between-class-members":"off",
"no-unused-vars":"off",
"@typescript-eslint/no-unused-vars":"error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"no-new": "off",
"no-underscore-dangle": "off",
"no-undef": "warn",
"camelcase": "off",
"@typescript-eslint/no-var-requires": "off"
},
"overrides":[
{
"files":[
"**/tests/*",
"*.test.*"
],
"rules":{
"import/no-extraneous-dependencies":"off"
}
}
]
}