Pre-commit hooks for Rust projects. Forked from {TODO}
Find a file
Nathaniel Waisbrot ba88882ecb Automatically tag every commit to 'master'
Use Github workflow to tag every commit to master. Tags follow
the format v1, v2, v3, etc.

fixes #3
2020-08-12 12:45:39 -04:00
.github/workflows Automatically tag every commit to 'master' 2020-08-12 12:45:39 -04:00
.pre-commit-config.yaml Use https instead of git protocol 2020-06-20 02:00:53 +02:00
.pre-commit-hooks.yaml Pass filenames with args 2020-06-20 02:46:24 +02:00
hooks.yaml Add a clippy hook. 2020-06-20 19:43:38 +01:00
README.md Add fmt arguments example to readme 2020-06-20 03:04:58 +02:00

Rust hooks for pre-commit

Rust tools package for pre-commit.

Using rust tools with pre-commit

-   repo: https://github.com/doublify/pre-commit-rust
    rev: master
    hooks:
    -   id: fmt
    -   id: cargo-check

Passing arguments to rustfmt

-   repo: https://github.com/doublify/pre-commit-rust
    rev: master
    hooks:
    -   id: fmt
        args: ['--verbose', '--edition', '2018', '--']