aboutsummaryrefslogtreecommitdiff
path: root/.claude/rules/elisp.md
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-12 18:14:19 -0500
committerCraig Jennings <c@cjennings.net>2026-06-12 18:14:19 -0500
commitb39633d9d482b6510e5626e0c5441ad211508a6e (patch)
treecbec839665b1fdb942629c3586711f57a4d50829 /.claude/rules/elisp.md
parentcf17681bcf1ed458e4972e3853be13e48ecde6b1 (diff)
downloadchime-b39633d9d482b6510e5626e0c5441ad211508a6e.tar.gz
chime-b39633d9d482b6510e5626e0c5441ad211508a6e.zip
chore: refresh .claude rules and hooks to rulesets canonical
The startup language-bundle sync repaired drift in these rulesets-owned files. Committing them at canonical so future syncs stay no-ops.
Diffstat (limited to '.claude/rules/elisp.md')
-rw-r--r--.claude/rules/elisp.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/.claude/rules/elisp.md b/.claude/rules/elisp.md
index e641058..ea9bdc2 100644
--- a/.claude/rules/elisp.md
+++ b/.claude/rules/elisp.md
@@ -72,4 +72,4 @@ Then `(require 'foo-config)` in `init.el` (or a config aggregator).
- A PostToolUse hook runs `check-parens` and `byte-compile-file` on every `.el` save
- If it blocks, read the error — don't retry blindly
-- Prefer Write over repeated Edits for nontrivial new code; incremental edits accumulate subtle paren mismatches
+- Edit cohesively, then verify parens/byte-compile right away. For nontrivial Elisp, land a function as one complete, coherent change rather than dribbling it in over many tiny partial edits — incremental fragments accumulate subtle paren mismatches. Run the paren-balance and byte-compile checks immediately after editing, whatever editing mechanism the environment uses.