From e66ca60da19754cae702c646f80c3ed7e5c6b5d8 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 6 Jul 2019 13:52:57 -0400 Subject: clippy --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 30b4f14..0a5ebde 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,6 +4,8 @@ // #![warn(clippy::cargo)] #![allow(clippy::collapsible_if)] #![allow(clippy::if_not_else)] +// match_same_arms is buggy, doesn't notice differences due to match arm order +#![allow(clippy::match_same_arms)] #![allow(clippy::module_name_repetitions)] #![allow(clippy::multiple_crate_versions)] #![allow(clippy::single_match)] -- cgit v1.2.3-54-g00ecf