Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/doublify/pre-commit-rust

Rust hooks for pre-commit
https://github.com/doublify/pre-commit-rust

git pre-commit rust

Last synced: 3 months ago
JSON representation

Rust hooks for pre-commit

Awesome Lists containing this project

README

        

# Rust hooks for pre-commit

[Rust](https://www.rust-lang.org) tools package for [pre-commit](https://pre-commit.com).

## Using rust tools with pre-commit

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

## Passing arguments to rustfmt

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