From 7d46395d1abbf0a9790c38849c418593aa4fd41c Mon Sep 17 00:00:00 2001 From: "zeon-neon[bot]" <136533918+zeon-neon[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 05:19:10 +0000 Subject: [PATCH] enhancement(lint): Fix lint errors for src/modules/bday.ts Co-authored-by: NeonGamerBot-QK Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com> --- src/modules/bday.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/modules/bday.ts b/src/modules/bday.ts index 9cfd50e..a712c08 100644 --- a/src/modules/bday.ts +++ b/src/modules/bday.ts @@ -5,7 +5,11 @@ export async function cronFunc(app: ModifiedApp) { const today = new Date(); for (const [user, bday] of Object.entries(app.dbs.bday.JSON())) { const date = new Date(bday); - console.debug(`bday: ${user}`, `${today.getDate()} == ${date.getDate()}`, `${today.getMonth()} == ${date.getMonth()}`); + console.debug( + `bday: ${user}`, + `${today.getDate()} == ${date.getDate()}`, + `${today.getMonth()} == ${date.getMonth()}`, + ); if ( date.getDate() == today.getDate() && date.getMonth() == today.getMonth()