contracts: allow upper case acronyms lint (#2128)
This commit is contained in:
parent
a474a95cc5
commit
bfe3ba9d5f
|
@ -56,7 +56,11 @@ impl ExpandedContract {
|
||||||
// export all the created data types
|
// export all the created data types
|
||||||
pub use #module::*;
|
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 {
|
pub mod #module {
|
||||||
#imports
|
#imports
|
||||||
#contract
|
#contract
|
||||||
|
|
Loading…
Reference in New Issue