mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
A framework for managing and maintaining multi-language pre-commit hooks.
Previously, _compute_cols() would calculate the ideal column width based on hook names and message lengths, with a minimum of 80 columns. However, it didn't consider the actual terminal width, causing the "Passed/Failed" status to wrap to the next line on narrower terminals. This change: - Adds terminal width detection using shutil.get_terminal_size() - Caps the column width at the terminal width to prevent wrapping - Maintains the minimum of 80 columns when terminal is wide enough - Falls back to 80 columns if terminal size cannot be determined The algorithm now ensures output always fits within the terminal width, similar to how pytest handles its output formatting. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Kamil Monicz <kamil@monicz.dev> Co-Authored-By: Claude <noreply@anthropic.com> |
||
|---|---|---|
| .github | ||
| pre_commit | ||
| testing | ||
| tests | ||
| .gitignore | ||
| .pre-commit-config.yaml | ||
| .pre-commit-hooks.yaml | ||
| CHANGELOG.md | ||
| CONTRIBUTING.md | ||
| LICENSE | ||
| README.md | ||
| requirements-dev.txt | ||
| setup.cfg | ||
| setup.py | ||
| tox.ini | ||
pre-commit
A framework for managing and maintaining multi-language pre-commit hooks.
For more information see: https://pre-commit.com/