1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-10-26 07:49:41 +03:00

docs(contributing): mention the nightly requirement for rustfmt

This commit is contained in:
Orhun Parmaksız 2023-04-12 16:40:05 +03:00
parent 72af8ac129
commit a5a78fc4c5
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90

View File

@ -31,12 +31,9 @@ cargo build
cargo test
```
7. Make sure [rustfmt](https://github.com/rust-lang/rustfmt) and [clippy](https://github.com/rust-lang/rust-clippy) don't complain about your changes.
6. Make sure [rustfmt](https://github.com/rust-lang/rustfmt) and [clippy](https://github.com/rust-lang/rust-clippy) don't complain about your changes.
```sh
cargo fmt --all -- --check --verbose
cargo clippy --verbose -- -D warnings
```
We use the `nightly` channel for `rustfmt` so please set the appropriate settings for your editor/IDE for that.
## Create a Pull Request