From d826d309b34f55fa8bdfaa04048041fc23d5790e Mon Sep 17 00:00:00 2001 From: Alex Cheema <41707476+AlexCheema@users.noreply.github.com> Date: Mon, 2 Feb 2026 08:14:11 -0800 Subject: [PATCH] chore: gitignore hosts_*.json files (#1343) ## Motivation `hosts_*.json` files are local host configuration snapshots that shouldn't be tracked in version control. ## Changes Added `hosts_*.json` pattern to `.gitignore`. ## Why It Works The glob pattern `hosts_*.json` matches any file starting with `hosts_` and ending with `.json` in the repo root. ## Test Plan ### Manual Testing - Verified that `hosts_*.json` files are ignored by git after this change. ### Automated Testing - No automated tests needed for a `.gitignore` change. Co-authored-by: Claude Opus 4.5 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index a4231085..d0b8299e 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,6 @@ target/ dashboard/build/ dashboard/node_modules/ dashboard/.svelte-kit/ + +# host config snapshots +hosts_*.json