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] = '***' } })