소스 검색

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.
Jon C 1 개월 전
부모
커밋
aa0fb5bdfa
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Makefile

+ 1 - 0
Makefile

@@ -33,6 +33,7 @@ spellcheck:
 clippy-%:
 	cargo $(nightly) clippy --manifest-path $(call make-path,$*)/Cargo.toml \
 	  --all-targets \
+	  --all-features \
 		-- \
 		--deny=warnings \
 		--deny=clippy::default_trait_access \