From 5a815a52bb09c44c4e8d0dfa62d33a122bbc1025 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 21 Dec 2020 19:08:28 -0800 Subject: [PATCH] Ignore redundant_else pedantic clippy lint --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 33612c616..2ab7f9a71 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -339,6 +339,7 @@ // things are often more readable this way clippy::cast_lossless, clippy::module_name_repetitions, + clippy::redundant_else, clippy::shadow_unrelated, clippy::single_match_else, clippy::too_many_lines,