fix: allow clippy::redundant_clone and clippy::type_complexity in abigen (#491)

This commit is contained in:
georgewhewell 2021-10-08 15:14:16 +01:00 committed by GitHub
parent b93cc4af75
commit 7d2e900cbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,8 @@ pub(crate) fn imports(name: &str) -> TokenStream {
quote! {
#![allow(clippy::enum_variant_names)]
#![allow(dead_code)]
#![allow(clippy::redundant_clone)]
#![allow(clippy::type_complexity)]
#![allow(unused_imports)]
#doc