From 90290030469cc7f278492ece67dd783c4d380b43 Mon Sep 17 00:00:00 2001 From: Yusuke Tanaka Date: Sun, 15 Nov 2020 04:27:37 +0900 Subject: build: update dlint to v0.2.10 (#8284) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update prebuilt "dlint" binary to v0.2.10 and fix diagnostics for "require-await" rule. Co-authored-by: Bartek IwaƄczuk --- std/async/mux_async_iterator_test.ts | 3 --- 1 file changed, 3 deletions(-) (limited to 'std/async/mux_async_iterator_test.ts') diff --git a/std/async/mux_async_iterator_test.ts b/std/async/mux_async_iterator_test.ts index 7977e4f56..51c0349cc 100644 --- a/std/async/mux_async_iterator_test.ts +++ b/std/async/mux_async_iterator_test.ts @@ -2,21 +2,18 @@ import { assertEquals, assertThrowsAsync } from "../testing/asserts.ts"; import { MuxAsyncIterator } from "./mux_async_iterator.ts"; -// eslint-disable-next-line require-await async function* gen123(): AsyncIterableIterator { yield 1; yield 2; yield 3; } -// eslint-disable-next-line require-await async function* gen456(): AsyncIterableIterator { yield 4; yield 5; yield 6; } -// eslint-disable-next-line require-await async function* genThrows(): AsyncIterableIterator { yield 7; throw new Error("something went wrong"); -- cgit v1.2.3