2021-05-30 21:18:45 +00:00
|
|
|
repos:
|
2021-05-30 18:07:57 +00:00
|
|
|
- repo: local
|
2021-03-30 19:24:01 +00:00
|
|
|
hooks:
|
2021-05-30 18:07:57 +00:00
|
|
|
- id: rust-linting
|
|
|
|
name: Rust linting
|
|
|
|
description: Run cargo fmt on files included in the commit.
|
|
|
|
entry: cargo +nightly fmt --
|
|
|
|
pass_filenames: true
|
|
|
|
types: [file, rust]
|
|
|
|
language: system
|
|
|
|
- id: rust-clippy
|
|
|
|
name: Rust clippy
|
|
|
|
description: Run cargo clippy on files included in the commit.
|
2021-08-24 15:10:16 +00:00
|
|
|
entry: cargo +nightly clippy --workspace --all-targets --all-features --
|
2021-05-30 18:07:57 +00:00
|
|
|
pass_filenames: false
|
|
|
|
types: [file, rust]
|
|
|
|
language: system
|