You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, every single git hook runs the setup checks (does the cli exists, does it meet the minimum required version, etc.). We should investigate optimizing those checks to only run on the "initiating" hook that starts the respective git hook lifecycles
Value
Running those checks on every single hook is inherently duplicative and unnecessary. For example, if the pre-commit hook check validates those items, then there's really no need to re-run the valdiation checks on the post-commit hook; you can't hit the post-commit hook without first hitting the pre-commit hook.
The text was updated successfully, but these errors were encountered:
Description
Currently, every single git hook runs the setup checks (does the cli exists, does it meet the minimum required version, etc.). We should investigate optimizing those checks to only run on the "initiating" hook that starts the respective git hook lifecycles
Value
Running those checks on every single hook is inherently duplicative and unnecessary. For example, if the
pre-commit
hook check validates those items, then there's really no need to re-run the valdiation checks on thepost-commit
hook; you can't hit the post-commit hook without first hitting the pre-commit hook.The text was updated successfully, but these errors were encountered: