From c5f302d2462d9837a66a4ebe4e3cc938e375a026 Mon Sep 17 00:00:00 2001 From: Madhura68 Date: Sun, 10 May 2026 07:29:44 +0200 Subject: [PATCH] chore: stabilize verification ignores --- eslint.config.mjs | 1 + lib/insights/agent-throughput.ts | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index c2c6d35..faac648 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -18,6 +18,7 @@ const eslintConfig = defineConfig([ globalIgnores([ // Default ignores of eslint-config-next: ".next/**", + ".claude/**", "out/**", "build/**", "next-env.d.ts", diff --git a/lib/insights/agent-throughput.ts b/lib/insights/agent-throughput.ts index 3e172aa..07ec1f1 100644 --- a/lib/insights/agent-throughput.ts +++ b/lib/insights/agent-throughput.ts @@ -22,8 +22,6 @@ export interface JobsPerDayResult { kpi: ThroughputKpi } -const STATUSES = ['queued', 'claimed', 'running', 'done', 'failed', 'cancelled', 'skipped'] as const - type RawDayRow = { day: Date; status: string; count: bigint } type RawKpiRow = { today_count: bigint; done_7d: bigint; terminal_7d: bigint; avg_seconds: number | null }