Skip to content

Commit d01587d

Browse files
committed
fix: add more rules that are typically violated
1 parent 6b8d64f commit d01587d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

eslint.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ export default tseslint.config(
7676
'@typescript-eslint/no-unsafe-member-access': ['warn'],
7777
'@typescript-eslint/no-unsafe-return': ['warn'],
7878
'@typescript-eslint/no-unsafe-argument': ['warn'],
79+
'@typescript-eslint/no-unsafe-call': ['warn'],
80+
'@typescript-eslint/require-await': ['warn'],
81+
'@typescript-eslint/no-misused-promises': ['warn'],
82+
'@typescript-eslint/no-base-to-string': ['warn'],
7983
},
8084
},
8185
{

0 commit comments

Comments
 (0)