mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-23 23:13:42 +02:00
fixed stuff
This commit is contained in:
parent
7a316d4343
commit
15f6acacdf
12
biome.jsonc
12
biome.jsonc
@ -19,12 +19,12 @@
|
|||||||
// and having to verify whether each individual file is ignored
|
// and having to verify whether each individual file is ignored
|
||||||
"includes": [
|
"includes": [
|
||||||
"**",
|
"**",
|
||||||
"!**/dist",
|
"!**/dist/**",
|
||||||
"!**/coverage",
|
"!**/coverage/**",
|
||||||
"!**/public",
|
"!**/public/**",
|
||||||
"!**/.github",
|
"!**/.github/**",
|
||||||
"!**/node_modules",
|
"!**/node_modules/**",
|
||||||
"!**/typedoc",
|
"!**/typedoc/**",
|
||||||
// TODO: lint css and html?
|
// TODO: lint css and html?
|
||||||
"!**/*.css",
|
"!**/*.css",
|
||||||
"!**/*.html",
|
"!**/*.html",
|
||||||
|
@ -3,7 +3,8 @@ import { CLASSIC_CANDY_FRIENDSHIP_MULTIPLIER } from "#balance/starters";
|
|||||||
|
|
||||||
/** Mock TimedEventManager so that ongoing events don't impact tests */
|
/** Mock TimedEventManager so that ongoing events don't impact tests */
|
||||||
export class MockTimedEventManager extends TimedEventManager {
|
export class MockTimedEventManager extends TimedEventManager {
|
||||||
override activeEvent() {
|
// biome-ignore lint/nursery/noUselessUndefined: Changes return type to void instead of undefined
|
||||||
|
override activeEvent(): undefined {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
override isEventActive(): boolean {
|
override isEventActive(): boolean {
|
||||||
|
Loading…
Reference in New Issue
Block a user