From b0bb693fc2e98e89a809e4c40be7626d2957bea2 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Tue, 19 May 2026 02:12:27 +0100 Subject: [PATCH] docs: update clippy section in DEVELOPMENT.md - update command to include `--workspace`, matching `pre-commit` - remove outdated paragraph about `msrv` --- DEVELOPMENT.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 35291369c..0009ff2b1 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -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