Skip to content

Commit 6421477

Browse files
authored
feat: turn off @typescript-eslint/require-await
This is rarely actually a problem and can lead to inconsistent code style.
1 parent cfad414 commit 6421477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default tseslint.config(
7777
'@typescript-eslint/no-unsafe-return': ['warn'],
7878
'@typescript-eslint/no-unsafe-argument': ['warn'],
7979
'@typescript-eslint/no-unsafe-call': ['warn'],
80-
'@typescript-eslint/require-await': ['warn'],
80+
'@typescript-eslint/require-await': ['off'],
8181
'@typescript-eslint/no-misused-promises': ['warn'],
8282
'@typescript-eslint/no-base-to-string': ['warn'],
8383
'@typescript-eslint/consistent-type-imports': ['error'],

0 commit comments

Comments
 (0)