# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: 9136088a246768144165fcc3ecc3d31bb686920a # frozen: v3.3.0 hooks: - id: check-yaml - repo: local hooks: - id: rustfmt name: Check formatting entry: cargo fmt -- language: system files: \.rs$ - id: tests name: Run tests entry: cargo test language: system files: \.rs$ pass_filenames: false - id: clippy name: Check clippy lints entry: cargo clippy -- -D warnings language: system files: \.rs$ pass_filenames: false - id: README name: Render README.md entry: docs/generate.sh language: script files: ^(README\.md)|(docs/.*)