aboutsummaryrefslogtreecommitdiff
path: root/.cargo-husky/hooks/pre-commit
Commit message (Collapse)AuthorAgeFilesLines
* address lint warningsDaniel Eades2021-12-091-2/+2
|
* Reorder Cargo Husky hooksS0AndS02021-08-251-3/+3
| | | | | | Format checks seem to be the fastest operation, and tests are the slowest. Reordering Git hook tasks from swiftest to slowest should provide quicker automated feedback when committing and/or pushing.
* Add custom "cargo-husky" hook scriptsS0AndS02021-08-171-0/+16
> Check the Read Me file for Cargo Husky crate for details > > https://github.com/rhysd/cargo-husky#readme These changes allow for local `git commit` and `git push` related hooks to more closely match remote CI/CD operations. Most notably the `cargo clippy...` lint command from ".gitlab-ci.yml" file now may guard against committing/pushing code that would otherwise cause CI/CD pipeline failures.