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
Is your feature request related to a problem? Please describe.
Currently, if a contributor does not format the code properly, sys_vdms makes a commit to the PR branch with format changes. This causes it to rerun the CI workflows with the format changes. To avoid this, we should have an automatic process.
Describe the solution you'd like
A solution is to enable the repo with pre-commit hooks. By doing so, the checks are run automatically prior to committing new code or the user can run pre-commit run --all-files (after running pip install pre-commit).
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, if a contributor does not format the code properly, sys_vdms makes a commit to the PR branch with format changes. This causes it to rerun the CI workflows with the format changes. To avoid this, we should have an automatic process.
Describe the solution you'd like
A solution is to enable the repo with pre-commit hooks. By doing so, the checks are run automatically prior to committing new code or the user can run
pre-commit run --all-files
(after runningpip install pre-commit
).The text was updated successfully, but these errors were encountered: