From ed0900b735b19dcc0235e85c244155626acfc4a1 Mon Sep 17 00:00:00 2001 From: elweyn Date: Wed, 7 Sep 2022 11:34:08 +0200 Subject: [PATCH] Add lint command to ignore console.log statement. --- backend/src/util/klicktipp.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/util/klicktipp.ts b/backend/src/util/klicktipp.ts index 42ed1ea3e..c8f83acc3 100644 --- a/backend/src/util/klicktipp.ts +++ b/backend/src/util/klicktipp.ts @@ -20,6 +20,7 @@ export async function retrieveNotRegisteredEmails(): Promise { } } await con.close() + // eslint-disable-next-line no-console console.log('User die nicht bei KlickTipp vorhanden sind: ', notRegisteredUser) return notRegisteredUser }