Completion Integrity Git pre-commit hook that blocks commits with integrity violations. Install What It Catches | Pattern | Why It's Bad | |---------|--------------| | Warning suppression ( , ) | Hides problems instead of fixing them | | Commented-out tests | Tests exist for a reason | | Deleted assertions ( 2) | Removing checks doesn't fix bugs | | Test file deletion | Don't delete tests to make them "pass" | | Empty catch blocks | Swallowing errors hides failures | | Fresh TODOs ( 2 per commit) | Defer work explicitly, not via comments | Manual Check False Positives Sometimes suppressions a…