docs: update clippy section in DEVELOPMENT.md

- update command to include `--workspace`, matching `pre-commit`
- remove outdated paragraph about `msrv`
This commit is contained in:
xtqqczze
2026-05-19 02:12:27 +01:00
committed by Sylvestre Ledru
parent 3af25aecf4
commit b0bb693fc2
+1 -5
View File
@@ -70,13 +70,9 @@ the suggested changes, and run `git commit ...` again.
### clippy
```shell
cargo clippy --all-targets --all-features
cargo clippy --workspace --all-targets --all-features
```
The `msrv` key in the clippy configuration file `clippy.toml` is used to disable
lints pertaining to newer features by specifying the minimum supported Rust
version (MSRV).
### rustfmt
```shell