fix: pre-commit hook now blocks commits when diagnostics are found#970
Open
skoshx wants to merge 2 commits into
Open
fix: pre-commit hook now blocks commits when diagnostics are found#970skoshx wants to merge 2 commits into
skoshx wants to merge 2 commits into
Conversation
The hook previously captured react-doctor output to a temp file, deleted it, and never exited with non-zero status. This allowed commits to proceed even when blocking diagnostics were found, defeating the entire purpose of the hook. Changes: - Hook now displays react-doctor output before exiting - Hook exits with status 1 when diagnostics are found - Updated tests to expect blocking behavior - Fixed test names to remove "non-blocking" references Fixes #969 Co-authored-by: Skosh <skoshx@users.noreply.github.com>
Co-authored-by: Skosh <skoshx@users.noreply.github.com>
commit: |
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.
Root Cause
The generated pre-commit hook captured react-doctor output to a temp file but never exited with non-zero status when diagnostics were found. This allowed commits to proceed even when blocking diagnostics were present, completely defeating the purpose of the hook.
The bug existed in two places:
buildReactDoctorHookBlock()ininstall-git-hook-file.tsNON_BLOCKING_REACT_DOCTOR_COMMANDingit-hook-shared.tsBoth implementations had the same flaw:
exit 1in the failure branchFix
The hook now:
Testing
Closes #969