]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/redundant_pattern_matching_ipaddr.rs
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / redundant_pattern_matching_ipaddr.rs
index 678d91ce93acda75d753e0222792723338c59fb5..4dd9171677ec20b27d9b130e74e8f87d5887558a 100644 (file)
@@ -1,8 +1,11 @@
 // run-rustfix
-
-#![warn(clippy::all)]
-#![warn(clippy::redundant_pattern_matching)]
-#![allow(unused_must_use, clippy::needless_bool, clippy::match_like_matches_macro)]
+#![warn(clippy::all, clippy::redundant_pattern_matching)]
+#![allow(unused_must_use)]
+#![allow(
+    clippy::match_like_matches_macro,
+    clippy::needless_bool,
+    clippy::uninlined_format_args
+)]
 
 use std::net::{
     IpAddr::{self, V4, V6},