aboutsummaryrefslogtreecommitdiff
path: root/.cargo-husky/hooks
Commit message (Collapse)AuthorAgeFilesLines
* Remove file ending of shellcheck_all and downgrade_dependencies scriptDaniel Schischkin2022-02-031-2/+2
|
* Add editorconfig to force some rules (Final Newline)Daniel Schischkin2022-02-031-1/+1
|
* Remove redundancy/code duplication and switch to shellcheck_all.sh scriptDaniel Schischkin2022-01-291-2/+2
|
* Add shellcheck to pre-push git hookDaniel Schischkin2022-01-281-0/+2
|
* address lint warningsDaniel Eades2021-12-092-4/+4
|
* Reorder Cargo Husky hooksS0AndS02021-08-252-6/+6
| | | | | | 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-172-0/+32
> 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.