Restore --all-targets for clippy (#9346)

This PR restores the `--all-targets` flag when running `cargo clippy`.

Without it, there are areas that Clippy does not check, as evidenced by
the violations that were caught once the flag was re-added.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-03-14 12:39:45 -04:00 committed by GitHub
parent 5f02ef701d
commit 3610b076a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 3 deletions

View file

@ -47,7 +47,10 @@ fn run_clippy(args: ClippyArgs) -> Result<()> {
clippy_command.arg("--workspace");
}
clippy_command.arg("--release").arg("--all-features");
clippy_command
.arg("--release")
.arg("--all-targets")
.arg("--all-features");
if args.fix {
clippy_command.arg("--fix");