From a081616746229b0514cc4474253fa23a1c6b5051 Mon Sep 17 00:00:00 2001 From: Collin Duncan 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] = '***' } })