From eaf3f3a7fb4aba228ebd15366ab79b64cf37832c Mon Sep 17 00:00:00 2001 From: Elena Frank Date: Thu, 28 Jul 2022 03:35:35 +0200 Subject: [PATCH] .cargo: Check all features in custom-clippy (#2771) --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 95976aaa..9d5619d2 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [alias] # Temporary solution to have clippy config in a single place until https://github.com/rust-lang/rust-clippy/blob/master/doc/roadmap-2021.md#lintstoml-configuration is shipped. -custom-clippy = "clippy -- -A clippy::type_complexity -A clippy::pedantic -D warnings" +custom-clippy = "clippy --all-features -- -A clippy::type_complexity -A clippy::pedantic -D warnings"