Skip to content

Commit bf186fb

Browse files
committed
fix: Disable TypeScript ESLint strict rules and unsafe checks
1 parent bd448b7 commit bf186fb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ const recommended = {
2525
'unicorn/no-await-expression-member': 'off',
2626
'@typescript-eslint/no-duplicate-type-constituents': 'off',
2727
'new-cap': 'off',
28+
'@typescript-eslint/no-non-null-assertion': 'off',
29+
'@typescript-eslint/require-await': 'off',
30+
'@typescript-eslint/no-unsafe-member-access': 'off',
31+
'@typescript-eslint/no-unsafe-call': 'off',
32+
'@typescript-eslint/no-unsafe-return': 'off',
33+
'@typescript-eslint/no-unsafe-argument': 'off',
34+
'no-await-in-loop': 'off',
2835
camelcase: 'warn',
2936
},
3037
env: {

0 commit comments

Comments
 (0)