From 08713036978e1889417df3513e4bee7dd8572532 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Sat, 2 Aug 2025 15:26:01 -0700 Subject: [PATCH] Separate TSDoc imports in `to-have-used-move.ts` --- test/test-utils/matchers/to-have-used-move.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/test-utils/matchers/to-have-used-move.ts b/test/test-utils/matchers/to-have-used-move.ts index 14a60653fc3..ef90e4dbad9 100644 --- a/test/test-utils/matchers/to-have-used-move.ts +++ b/test/test-utils/matchers/to-have-used-move.ts @@ -1,7 +1,9 @@ +/** biome-ignore-start lint/correctness/noUnusedImports: TSDoc imports */ +import type { Pokemon } from "#field/pokemon"; +/** biome-ignore-end lint/correctness/noUnusedImports: TSDoc imports */ + import { getPokemonNameWithAffix } from "#app/messages"; import type { MoveId } from "#enums/move-id"; -// biome-ignore lint/correctness/noUnusedImports: TSDocs -import type { Pokemon } from "#field/pokemon"; import { getOnelineDiffStr, getOrdinal } from "#test/test-utils/string-utils"; import { isPokemonInstance, receivedStr } from "#test/test-utils/test-utils"; import type { TurnMove } from "#types/turn-move";