diff options
author | Alan Gou <alan@frontapp.com> | 2020-06-19 02:05:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 11:05:37 +0200 |
commit | ffedbd79ad90bc88ef8c51d145536f68f50d4fea (patch) | |
tree | c774772d18867fe08a87429446c473be2fc856c5 /cli/tests/unit/streams_transform_test.ts | |
parent | 36ad5e44020a8bd48546e5a8bdb7db9c2f40dc52 (diff) |
build: lint cli/tests/unit using deno lint (#6327)
Diffstat (limited to 'cli/tests/unit/streams_transform_test.ts')
-rw-r--r-- | cli/tests/unit/streams_transform_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/streams_transform_test.ts b/cli/tests/unit/streams_transform_test.ts index f3ec148ae..c8b4528e8 100644 --- a/cli/tests/unit/streams_transform_test.ts +++ b/cli/tests/unit/streams_transform_test.ts @@ -506,7 +506,7 @@ unitTest(async function transformStreamStartCalledOnce() { unitTest(function transformStreamReadableTypeThrows() { assertThrows( - // eslint-disable-next-line + // eslint-disable-next-line @typescript-eslint/no-explicit-any () => new TransformStream({ readableType: "bytes" as any }), RangeError, undefined, @@ -516,7 +516,7 @@ unitTest(function transformStreamReadableTypeThrows() { unitTest(function transformStreamWirtableTypeThrows() { assertThrows( - // eslint-disable-next-line + // eslint-disable-next-line @typescript-eslint/no-explicit-any () => new TransformStream({ writableType: "bytes" as any }), RangeError, undefined, |