Преглед на файлове

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 \