# ── Release workflow helpers ────────────────────────────────────────────────── COMMIT.md PR.md RELEASE.md # ── Go build artifacts ──────────────────────────────────────────────────────── *.exe *.exe~ *.dll *.so *.dylib *.test *.out /dist/ /bin/ # ── Go workspace (local development only) ──────────────────────────────────── go.work go.work.sum # ── Dependency vendor directory ─────────────────────────────────────────────── vendor/ # ── Coverage output ─────────────────────────────────────────────────────────── coverage.out coverage.html *.coverprofile # ── OS artifacts ───────────────────────────────────────────────────────────── .DS_Store Thumbs.db # ── Editor artifacts ────────────────────────────────────────────────────────── .idea/ .vscode/ *.swp *.swo *~