Skip to content

Commit aa0fb5b

Browse files
authored
Makefile: Add --all-features to clippy job (#86)
#### Problem The clippy target does not include `--all-features`, which means we could eventually miss warnings. #### Summary of changes Add `--all-features` to the target.
1 parent 717faea commit aa0fb5b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ spellcheck:
3333
clippy-%:
3434
cargo $(nightly) clippy --manifest-path $(call make-path,$*)/Cargo.toml \
3535
--all-targets \
36+
--all-features \
3637
-- \
3738
--deny=warnings \
3839
--deny=clippy::default_trait_access \

0 commit comments

Comments
 (0)