From dfb94eb22c3db8e3793777d9bf848277c5fc9efc Mon Sep 17 00:00:00 2001 From: "zeon-neon[bot]" <136533918+zeon-neon[bot]@users.noreply.github.com> Date: Mon, 14 Jul 2025 21:41:47 +0000 Subject: [PATCH] enhancement(lint): Fix lint errors for lib/jsscripts/log.ts Co-authored-by: NeonGamerBot-QK Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com> --- lib/jsscripts/log.ts | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/lib/jsscripts/log.ts b/lib/jsscripts/log.ts index e19e9a18..f4760f8a 100644 --- a/lib/jsscripts/log.ts +++ b/lib/jsscripts/log.ts @@ -1,20 +1,20 @@ -export function startingLog(): void { - const isDev = process.env.NODE_ENV !== 'production' - console.log( - `%c What's up?`, - `font-size: 120px; - font-family: "Poppins", sans-serif; - background-size: 1000% 1000%; - animation: gradient 1s ease infinite; - ` - ) - console.log( - `%c Thanks for visting this site you can dontate me at https://ko-fi.com/saahil\n Try to find the easter egg in this site🥚\n HINT: to use it you must use the console it is a very VERY hard one`, - `font-size: 15px;` - ) - if (isDev) { - console.debug( - 'This message will show during production build. & development build' - ) - } -} \ No newline at end of file +export function startingLog(): void { + const isDev = process.env.NODE_ENV !== "production"; + console.log( + `%c What's up?`, + `font-size: 120px; + font-family: "Poppins", sans-serif; + background-size: 1000% 1000%; + animation: gradient 1s ease infinite; + `, + ); + console.log( + `%c Thanks for visting this site you can dontate me at https://ko-fi.com/saahil\n Try to find the easter egg in this site🥚\n HINT: to use it you must use the console it is a very VERY hard one`, + `font-size: 15px;`, + ); + if (isDev) { + console.debug( + "This message will show during production build. & development build", + ); + } +}