diff --git a/biome.jsonc b/biome.jsonc index 543c417956d..57272982584 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -132,9 +132,16 @@ "rules": { "correctness": { "noUnusedImports": "off" - }, + } + } + } + }, + { + "include": ["src/overrides.ts"], + "linter": { + "rules": { "style": { - "useImportType": "error" + "useImportType": "off" } } } diff --git a/src/enums/move-use-type.ts b/src/enums/move-use-type.ts index 30c97ea85f9..b1160fd9645 100644 --- a/src/enums/move-use-type.ts +++ b/src/enums/move-use-type.ts @@ -1,5 +1,5 @@ -import type { BattlerTagLapseType } from "#app/data/battler-tags"; import type { PostDancingMoveAbAttr } from "#app/data/abilities/ability"; +import type { BattlerTagLapseType } from "#app/data/battler-tags"; /** * Enum representing all the possible ways a given move can be executed. @@ -62,12 +62,6 @@ export enum MoveUseType { REFLECTED = 5 } -/** - * Comment block to prevent IDE auto-import removal. - * {@linkcode BattlerTagLapseType} - * {@linkcode PostDancingMoveAbAttr} - */ - // # HELPER FUNCTIONS // Please update the markdown tables if any new `MoveUseType`s get added.