Update biome.jsonc

This commit is contained in:
NightKev 2025-06-06 15:32:36 -07:00
parent 77dba169b6
commit 6c75f2429d
2 changed files with 10 additions and 9 deletions

View File

@ -132,9 +132,16 @@
"rules": {
"correctness": {
"noUnusedImports": "off"
},
}
}
}
},
{
"include": ["src/overrides.ts"],
"linter": {
"rules": {
"style": {
"useImportType": "error"
"useImportType": "off"
}
}
}

View File

@ -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.