mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 07:17:27 +00:00
VERSIONS.md tells you what the current versions for things like MSRV is and which files you need to update if you change it. Also fixes the incorrect: - MSRV in README.md - nightly version in .pre-commit-config.yaml
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-03-01 cargo-clippy -- -- -D warnings
|
|
- id: format
|
|
name: Check rustfmt
|
|
language: system
|
|
files: '[.]rs$'
|
|
pass_filenames: false
|
|
entry: rustup run --install nightly-2023-03-01 cargo-fmt --check
|