From 2a3d373dc1a2ef914f532a23c6170912d3837108 Mon Sep 17 00:00:00 2001 From: Frederic BIDON Date: Sun, 23 Aug 2026 19:18:42 +0200 Subject: [PATCH] chore: ignore the _asm binary left behind by go build go build in json/internal/utf8x/_asm or in json/lexers/default-lexer/internal/strscan/_asm writes a 7.7 MB _asm executable next to the generator source. Only the .s that generator emits is committed. Co-Authored-By: Claude Opus 5 (1M context) Signed-off-by: Frederic BIDON --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 48d63d7..b1f3f9d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,7 @@ Godeps .mcp.json .worktrees go.work.sum + +# Compiled avo generator, left behind by `go build` in an _asm module. +# The committed artifact is the .s it writes (see the go:generate directives). +**/_asm/_asm