mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-18 09:35:50 +00:00
17 lines
549 B
YAML
17 lines
549 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: clippy
|
|
name: Check clippy
|
|
language: system
|
|
files: '[.]rs$'
|
|
pass_filenames: false
|
|
entry: rustup run --install nightly-2023-07-09 cargo-clippy -- -- -D warnings
|
|
- id: format
|
|
name: Check rustfmt
|
|
language: system
|
|
files: '[.]rs$'
|
|
pass_filenames: false
|
|
entry: rustup run --install nightly-2023-07-09 cargo-fmt --check
|