fix: resolve all lint errors across source and test files
Some checks failed
CI / ci (push) Failing after 11s
CI / e2e (push) Has been skipped

- Fix unused function parameters (prefix with _)
- Fix unused imports in test files
- Fix import ordering in test files
- Auto-fix formatting issues across 22 files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-06 19:39:47 +02:00
parent e19d40e232
commit 3638e7b240
18 changed files with 47 additions and 58 deletions

View File

@@ -1,6 +1,5 @@
import { beforeEach, describe, expect, it } from "bun:test";
import { globalItems, items } from "../../src/db/schema.ts";
import { eq } from "drizzle-orm";
import { globalItems } from "../../src/db/schema.ts";
import {
createCandidate,
createThread,
@@ -629,10 +628,7 @@ describe("Thread Service", () => {
imageUrl?: string;
},
) {
const [row] = await testDb
.insert(globalItems)
.values(data)
.returning();
const [row] = await testDb.insert(globalItems).values(data).returning();
return row;
}