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

Commit

Permalink
contracts: allow upper case acronyms lint (#2128)
Browse files Browse the repository at this point in the history
  • Loading branch information
palango authored Feb 10, 2023
1 parent a474a95 commit bfe3ba9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ethers-contract/ethers-contract-abigen/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ impl ExpandedContract {
// export all the created data types
pub use #module::*;

#[allow(clippy::too_many_arguments, non_camel_case_types)]
#[allow(
clippy::too_many_arguments,
non_camel_case_types,
clippy::upper_case_acronyms
)]
pub mod #module {
#imports
#contract
Expand Down

0 comments on commit bfe3ba9

Please sign in to comment.