-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
65 lines (65 loc) · 2.28 KB
/
.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
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
{
"extends": ["@dvsa/eslint-config-ts", "prettier"],
"settings": {
"import/resolver": {
"typescript": {
"alwaysTryTypes": true
}
}
},
"rules": {
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-redeclare": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-useless-constructor": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/default-param-last": "off",
"import/no-import-module-exports": "off",
"jest/no-conditional-expect": "off",
"jest/no-identical-title": "off",
"jest/no-commented-out-tests": "off",
"jest/no-jasmine-globals": "off",
"jest/no-standalone-expect": "off",
"jest/require-top-level-describe": "off",
"security/detect-non-literal-fs-filename": "off",
"security/detect-object-injection": "off",
"security/detect-non-literal-require": "off",
"security/detect-unsafe-regex": "off",
"array-callback-return": "off",
"consistent-return": "off",
"global-require": "off",
"implicit-arrow-linebreak": "off",
"max-classes-per-file": "off",
"new-cap": "off",
"no-param-reassign": "off",
"no-ex-assign": "off",
"no-restricted-globals": "off",
"no-constructor-return": "off",
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
"no-await-in-loop": "off",
"prefer-destructuring": "off",
"prefer-promise-reject-errors": "off",
"import/no-dynamic-require": "off",
"import/no-cycle": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
}