-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy path.eslintrc.json
30 lines (30 loc) · 839 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
{
"root": true,
"extends": [
"@dtsgenerator"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0
},
"overrides": [
{
"files": [
"**/*_test.ts"
],
"rules": {
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-floating-promises": 0,
"@typescript-eslint/no-implied-eval": 0,
"@typescript-eslint/no-misused-promises": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/unbound-method": 0
}
}
]
}