Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
fix: allow clippy::redundant_clone and clippy::type_complexity in abi…
Browse files Browse the repository at this point in the history
…gen (#491)
  • Loading branch information
georgewhewell authored Oct 8, 2021
1 parent b93cc4a commit 7d2e900
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ethers-contract/ethers-contract-abigen/src/contract/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7d2e900

Please sign in to comment.