feat: add Claude hooks for pre-commit quality gates#3701
Merged
Conversation
Add two Claude hooks to automate quality checks: - PostToolUse hook runs prettier on every edited file - PreToolUse hook gates git commits by running esbuild, eslint, vitest, and webview build based on which files are staged Remove the manual Pre-Commit Checks section from CLAUDE.md since the hooks now enforce this automatically. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.claude/settings.json) to automate quality checks that were previously manual:prettier --writeon every file afterEditorWriteoperationsgit commitcommands by inspecting staged files and conditionally running esbuild, eslint, vitest, and webview build checks.claude/hooks/pre-commit-checks.shimplementing the commit gate logic with dependency guards and staged-file detectionCLAUDE.mdsince hooks now enforce this automaticallyTest plan
Locally tested the different flows:
git commitpassed through immediately with no extra promptinggit commitskipped checks if it was Go code onlyextensions/vscode/src/triggers esbuild, lint, and unit testsnode_modulesweren't installed which is common when using a worktree the message is clear and actionable for Claude to continueprettiergets run on all file edits using--ignore-unknownto avoid files Prettier doesn't support just like we do in thepackage.jsonnpm script