diff --git a/.rfcs/001-serialize-async.md b/.rfcs/001-serialize-async.md index 265c5768..1ad6d9a8 100644 --- a/.rfcs/001-serialize-async.md +++ b/.rfcs/001-serialize-async.md @@ -3,7 +3,7 @@ ### Finished JSON output ```js -// eslint-disable-next-line @typescript-eslint/no-unused-vars +// eslint-disable-next-line @typescript-eslint/no-unused-vars, no-unused-vars const out = [ // is just a `[` that initializes the array pf the response // diff --git a/src/async/asyncTypes.ts b/src/async/asyncTypes.ts index 3756270b..ef8c6bf0 100644 --- a/src/async/asyncTypes.ts +++ b/src/async/asyncTypes.ts @@ -1,7 +1,8 @@ +// eslint-disable-next-line eslint-comments/disable-enable-pair +/* eslint-disable @typescript-eslint/no-explicit-any */ import { TsonType } from "../types.js"; import { TsonBranded, TsonTypeTesterCustom } from "../types.js"; import { serialized } from "../types.js"; -import { TsonAsyncType } from "./asyncTypes.js"; export type TsonAsyncStringifierIterator = AsyncIterable & { [serialized]: TValue;