From 1767f01a9b11df518da8bdc3d7e4ba7bcf35dd16 Mon Sep 17 00:00:00 2001 From: Levente Polyak Date: Wed, 10 Mar 2021 01:36:31 +0100 Subject: [PATCH] chore: disable wrong self convention until clippy is fixed Fixed in https://github.com/rust-lang/rust-clippy/issues/6818 but requires a new clippy release. --- src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.rs b/src/config.rs index 2783f79..7498b17 100644 --- a/src/config.rs +++ b/src/config.rs @@ -11,6 +11,7 @@ pub const DEFAULT_LIST_FORMAT: &str = #[derive(Debug, PartialEq, ToString, EnumString)] #[strum(serialize_all = "snake_case")] +#[allow(clippy::wrong_self_convention)] pub enum DisplayMode { Smash, List,