From 5f23844263d04e01d0891e3cf4c82cb4c8cd203a Mon Sep 17 00:00:00 2001 From: s1d3sw1ped_bot Date: Tue, 1 Sep 2026 16:24:56 +0000 Subject: [PATCH] gitignore: Add Go build and IDE ignores The tree is a Go library with testdata dumps already committed; this keeps local binaries, coverage output, and editor files out of future commits. --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f0527e --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Binaries and test artifacts +*.exe +*.test +*.out +bin/ +dist/ + +# Go workspace +go.work +go.work.sum + +# IDE / OS +.idea/ +.vscode/ +.DS_Store -- 2.39.5