From 09da9a8dfc5b3592ef71cd247232e828c128fc2a Mon Sep 17 00:00:00 2001 From: Lukas Date: Sun, 29 Mar 2026 23:57:01 +0200 Subject: [PATCH] Reduce pre-commit context noise, gitignore agent artifacts Slim Vitest pre-commit output with dot reporter and coverage summary. Ignore .agent-tests/ and docs/agents/research/ in git. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 2 ++ lefthook.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 20b2529..065149b 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,6 @@ Thumbs.db coverage/ *.tsbuildinfo docs/agents/plans/ +docs/agents/research/ +.agent-tests/ .rodney/ diff --git a/lefthook.yml b/lefthook.yml index 438d7c9..c0d66ce 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -26,4 +26,4 @@ pre-commit: - name: oxlint run: pnpm oxlint -- --deny warnings - name: test - run: pnpm test + run: pnpm vitest run --reporter=dot --coverage.reporter=text-summary