Skip to content

Commit 1824c3a

Browse files
authored
chore: contributing doc command should be same as ci (#139)
1 parent 86f524d commit 1824c3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,18 @@ To contribute to this project, you'll need to have Rust installed on your machin
5252

5353
3. **Format Your Code**
5454

55-
Ensure that your code is properly formatted. We use `rustfmt` for formatting.
55+
Ensure that your code is properly formatted. We use `rustfmt` with nightly toolchain for formatting.
5656

5757
```sh
58-
cargo fmt
58+
cargo +nightly fmt --all
5959
```
6060

6161
4. **Run Clippy**
6262

6363
Run Clippy to catch common mistakes and ensure code quality.
6464

6565
```sh
66-
cargo clippy
66+
cargo clippy --all-targets --tests -- -Dwarnings
6767
```
6868

6969
## Running Tests

0 commit comments

Comments
 (0)