Skip to content

Commit

Permalink
chore(test): suppress no-unused-vars 'x' is assigned a value but only…
Browse files Browse the repository at this point in the history
… used as a type (#3451)
  • Loading branch information
exoego authored Sep 26, 2024
1 parent f87c221 commit bc20d30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/client/types.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import { expectTypeOf } from 'vitest'
import { Hono } from '..'
import { upgradeWebSocket } from '../adapter/deno/websocket'
Expand Down
1 change: 1 addition & 0 deletions src/helper/factory/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import { expectTypeOf } from 'vitest'
import { hc } from '../../client'
import type { ClientRequest } from '../../client/types'
Expand Down
1 change: 1 addition & 0 deletions src/helper/ssg/ssg.test.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
/** @jsxImportSource ../../jsx */
import { Hono } from '../../hono'
import { poweredBy } from '../../middleware/powered-by'
Expand Down

0 comments on commit bc20d30

Please sign in to comment.