From 36437b8189cce32efd4c2113ab50315e5fdf95a5 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Sat, 23 May 2026 16:28:45 +0200 Subject: [PATCH] chore: remove unused eslint-disable directives --- e2e/store-screenshots/load-sharp.ts | 1 - .../op-log/validation/auto-fix-time-spent-investigation.spec.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/e2e/store-screenshots/load-sharp.ts b/e2e/store-screenshots/load-sharp.ts index 605fe5c19e..6a59c613d1 100644 --- a/e2e/store-screenshots/load-sharp.ts +++ b/e2e/store-screenshots/load-sharp.ts @@ -23,7 +23,6 @@ export const loadSharp = async (): Promise => { try { cached = resolveModule(await import('sharp')); } catch { - // eslint-disable-next-line no-console console.log('sharp not found, installing (dev-only screenshot tool)...'); execSync('npm install --no-save --no-package-lock sharp', { stdio: 'inherit' }); cached = resolveModule(await import('sharp')); diff --git a/src/app/op-log/validation/auto-fix-time-spent-investigation.spec.ts b/src/app/op-log/validation/auto-fix-time-spent-investigation.spec.ts index d691eb7eee..d5787aaa04 100644 --- a/src/app/op-log/validation/auto-fix-time-spent-investigation.spec.ts +++ b/src/app/op-log/validation/auto-fix-time-spent-investigation.spec.ts @@ -56,7 +56,6 @@ describe('auto-fix data-loss for timeSpentOnDay nulls', () => { ]); const v = result.task.entities.t1.timeSpentOnDay['2026-05-21']; - // eslint-disable-next-line no-console console.log('auto-fix result:', v); expect(v).toBe(0); // the good day survives @@ -132,7 +131,6 @@ describe('auto-fix data-loss for timeSpentOnDay nulls', () => { ), ]; const result: any = autoFixTypiaErrors(data, errors); - // eslint-disable-next-line no-console console.log('4-error result:', JSON.stringify(result, null, 2)); expect(result.task.entities.t1.timeSpentOnDay['2026-05-20']).toBe(0); expect(result.task.entities.t1.timeSpentOnDay['2026-05-21']).toBe(0);