contracts: allow upper case acronyms lint (#2128)

This commit is contained in:
Paul Lange 2023-02-10 20:52:55 +01:00 committed by GitHub
parent a474a95cc5
commit bfe3ba9d5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -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