Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KATT committed Oct 3, 2023
1 parent 2467dbc commit 75001a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .rfcs/001-serialize-async.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
// <first line> is just a `[` that initializes the array pf the response
// <second line>
Expand Down
3 changes: 2 additions & 1 deletion src/async/asyncTypes.ts
Original file line number Diff line number Diff line change
@@ -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<TValue> = AsyncIterable<string> & {
[serialized]: TValue;
Expand Down

0 comments on commit 75001a0

Please sign in to comment.