From 3a6f61bd433b5b9065fa9548fd3b6430c82a6a6b Mon Sep 17 00:00:00 2001 From: s1d3sw1ped_bot Date: Tue, 1 Sep 2026 11:27:41 -0500 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. Co-authored-by: s1d3sw1ped_bot Co-committed-by: s1d3sw1ped_bot --- .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