Skip to content

Commit

Permalink
feat: allow some other attributes on the generated event typings
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstevens19 committed Sep 18, 2024
1 parent b3e4daf commit a80f8f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/generator/events_bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ fn generate_event_bindings_code(
) -> Result<Code, GenerateEventBindingCodeError> {
let event_type_name = generate_event_type_name(&contract.name);
let code = Code::new(format!(
r#"#![allow(non_camel_case_types)]
r#"#![allow(non_camel_case_types, clippy::enum_variant_names, clippy::too_many_arguments, clippy::upper_case_acronyms, clippy::type_complexity, dead_code)]
/// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY.
///
/// This file was auto generated by rindexer - https://github.com/joshstevens19/rindexer.
Expand Down
1 change: 1 addition & 0 deletions documentation/docs/pages/docs/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

### Features
-------------------------------------------------
- feat: allow some other attributes on the generated event typings

### Bug fixes
-------------------------------------------------
Expand Down

0 comments on commit a80f8f6

Please sign in to comment.