diff options
Diffstat (limited to 'cli/tests/async_error.ts')
-rw-r--r-- | cli/tests/async_error.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/async_error.ts b/cli/tests/async_error.ts index b37369bac..b55c73aeb 100644 --- a/cli/tests/async_error.ts +++ b/cli/tests/async_error.ts @@ -1,5 +1,5 @@ console.log("hello"); -// eslint-disable-next-line require-await +// deno-lint-ignore require-await const foo = async (): Promise<never> => { console.log("before error"); throw Error("error"); |