From c3f16950ca925cd2d3932c8c0364838bd0a92035 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..83b358e 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,3 +1,4 @@ +#![allow(clippy::wrong_self_convention)] use crate::args::Args; use crate::errors::*; use crate::git::GitConfigBuilder;