From a87928661d76699654c0c525fcc0914cf0ce7214 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Tue, 6 Jan 2026 13:54:27 +1100 Subject: [PATCH] Remove overly broad *.json from .gitignore The blanket *.json ignore is not canonical for Rust projects. JSON files that need ignoring are already covered by: - .g3/ for session logs - logs/ for error logs - .build for Swift build artifacts --- .gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitignore b/.gitignore index 994a746..ef906ed 100644 --- a/.gitignore +++ b/.gitignore @@ -25,10 +25,6 @@ target # Session logs directory logs/ -*.json -# Exception: analysis artifacts -!analysis/deps/graph.json - .g3/ # g3 artifacts