diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/typescript/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -328,7 +328,7 @@ - [ ] "adjacent-overload-signatures" - [ ] "array-type" -- [ ] "await-thenable" +- [X] "await-thenable" - [ ] "ban-ts-comment" - [ ] "ban-ts-ignore" - [ ] "ban-types" diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 60fb3f6..a2253a2 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -1,4 +1,7 @@ { + "@typescript-eslint/await-thenable": [ + "error" + ], "@typescript-eslint/indent": [ "error", "tab", |