From ec5a163f053fa3ba8dd5329b6715f2061b8c2c32 Mon Sep 17 00:00:00 2001 From: dailz Date: Mon, 22 Jun 2026 15:14:52 +0800 Subject: [PATCH] chore: expand .gitignore for per-crate target dirs and local artifacts * crates/*/target/ - per-crate build output (root /target/ was already covered, but workspace members' own target/ dirs were leaking through) * .omo/ .sisyphus/ - local agent tooling state, not project content * benchmark-report.md - output of cargo run -p log-viewer-bench, regenerated per run so should not be tracked --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 99cdcf1..e6963c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,13 @@ /target/ +crates/*/target/ *.swp *.swo .idea/ .vscode/ + +# Agent tooling state +.omo/ +.sisyphus/ + +# Benchmark output +benchmark-report.md