move all to local hooks

This commit is contained in:
Josh Thomas 2025-03-10 10:59:09 -05:00
parent 89c6dacb60
commit 08d0ba6f5a

View file

@ -27,9 +27,19 @@ repos:
entry: cargo fmt
args:
- --
- repo: https://github.com/backplane/pre-commit-rust-hooks
rev: v1.1.0
hooks:
- id: check
- id: clippy
- id: test
- id: check
name: cargo check
description: check the package for errors with "cargo check"
types:
- rust
language: rust
entry: cargo check
pass_filenames: false
- id: clippy
name: cargo clippy
description: check the package with "cargo clippy"
types:
- rust
language: rust
entry: cargo clippy
pass_filenames: false