From 217079ec84c8c7081fe4c27494915fe873d99f68 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 19 Apr 2026 12:45:33 -0500 Subject: chore(elisp): add *.elc and *.eln to gitignore template The validate-el.sh hook byte-compiles .el files, which produces .elc (and on Emacs 28+ with native-comp, .eln) artifacts. Projects using the bundle almost always want these ignored. --- languages/elisp/gitignore-add.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'languages/elisp/gitignore-add.txt') diff --git a/languages/elisp/gitignore-add.txt b/languages/elisp/gitignore-add.txt index d570607..72d8290 100644 --- a/languages/elisp/gitignore-add.txt +++ b/languages/elisp/gitignore-add.txt @@ -1,3 +1,7 @@ # Claude Code — personal overrides (not part of the ruleset) /.claude/settings.local.json /.claude/.cache/ + +# Elisp byte-compile artifacts (generated by the hook) +*.elc +*.eln -- cgit v1.2.3