Skip to content

Commit 7b02b32

Browse files
committed
justfile: Make 'just lint' run clippy against all targets
Note that that also means that we run 'cargo clippy' in CI because the CI workflow runs 'just lint'
1 parent d4745c3 commit 7b02b32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ format *EXTRA_FLAGS:
88

99
# Run Clippy linting (cargo clippy)
1010
lint *EXTRA_FLAGS:
11-
cargo clippy {{EXTRA_FLAGS}}
11+
cargo clippy --all-targets {{EXTRA_FLAGS}}
1212

1313
# Check Rust code (cargo check)
1414
check *EXTRA_FLAGS:

0 commit comments

Comments
 (0)