mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-23 15:03:24 +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
|
||||
"includes": [
|
||||
"**",
|
||||
"!**/dist",
|
||||
"!**/coverage",
|
||||
"!**/public",
|
||||
"!**/.github",
|
||||
"!**/node_modules",
|
||||
"!**/typedoc",
|
||||
"!**/dist/**",
|
||||
"!**/coverage/**",
|
||||
"!**/public/**",
|
||||
"!**/.github/**",
|
||||
"!**/node_modules/**",
|
||||
"!**/typedoc/**",
|
||||
// TODO: lint css and html?
|
||||
"!**/*.css",
|
||||
"!**/*.html",
|
||||
|
@ -3,7 +3,8 @@ import { CLASSIC_CANDY_FRIENDSHIP_MULTIPLIER } from "#balance/starters";
|
||||
|
||||
/** Mock TimedEventManager so that ongoing events don't impact tests */
|
||||
export class MockTimedEventManager extends TimedEventManager {
|
||||
override activeEvent() {
|
||||
// biome-ignore lint/nursery/noUselessUndefined: Changes return type to void instead of undefined
|
||||
override activeEvent(): undefined {
|
||||
return;
|
||||
}
|
||||
override isEventActive(): boolean {
|
||||
|
Loading…
Reference in New Issue
Block a user