Ignore more pedantic lints for various feature combinations
diff --git a/src/lib.rs b/src/lib.rs
index a36ca6f..0131c13 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -272,8 +272,9 @@
 #![cfg_attr(
     feature = "cargo-clippy",
     allow(
-        cast_possible_truncation, cast_possible_wrap, items_after_statements, similar_names,
-        single_match_else, stutter, unseparated_literal_suffix, use_self
+        cast_possible_truncation, cast_possible_wrap, if_not_else, items_after_statements,
+        similar_names, single_match_else, stutter, unseparated_literal_suffix, use_self,
+        used_underscore_binding
     )
 )]