From f166d061beded16dc26c11c2dc9a189df2ac4c35 Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Fri, 1 May 2026 16:26:10 +0200 Subject: [PATCH] Ignore audit reports, run logs, and per-crate target/ dirs audit-out/ and audit-*.md are local report artifacts produced by the PPCBUG audit pipeline; *.stdout/*.stderr/*.log are stress-harness run captures. Switch /target/ to target/ so per-crate target dirs (e.g. crates/xenia-app/target/ used as a stress-output sink) are also ignored. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1eab3d7..99591c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,13 @@ -/target/ +target/ *.iso *.xiso -*.db \ No newline at end of file +*.db + +# Audit reports / pre-pass findings (local artifacts, not source) +audit-out/ +audit-*.md + +# Run logs from stress harnesses and ad-hoc captures +*.stdout +*.stderr +*.log