From 420aa5ed7805b6511c7fa3fa4146793986f7a937 Mon Sep 17 00:00:00 2001 From: Collin Duncan <3679940+cgduncan7@users.noreply.github.com> Date: Wed, 30 Nov 2022 09:58:37 +0100 Subject: [PATCH] Fix issue with weird semicolon thing --- src/common/logger.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/logger.ts b/src/common/logger.ts index 83e3250..1509efa 100644 --- a/src/common/logger.ts +++ b/src/common/logger.ts @@ -79,6 +79,8 @@ export class LoggerInstance { const toObfuscate = ['password'] toObfuscate.forEach((key) => { if ((details as Record)[key]) { + // Prettier and eslint are fighting + // eslint-disable-next-line @typescript-eslint/no-extra-semi ;(details as Record)[key] = '***' } })