Use pipx run pre-commit instead of pipx install pre-commit #19
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It is recommended to use
pipx run pre-commitinstead ofpipx install pre-commit. This ensures that the tool is run in an ephemeral environment with its latest version (or a specific version) without needing to permanently install it in the user's environment. This is cleaner and more in line with temporary usage patterns for pre-commit.Currently,
GEMINI.mdmentions:It might be better to suggest
pipx run pre-commit installor similar for users who don't want to installpre-commitglobally.