Skip to content

Commit

Permalink
Allow the too_many_arguments clippy lint
Browse files Browse the repository at this point in the history
This fixes issue #23.
  • Loading branch information
shahn committed Jul 23, 2024
1 parent 099d544 commit 37e07c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rasn-compiler/src/generator/rasn/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ impl Backend for Rasn {
});
Ok(GeneratedModule {
generated: Some(quote! {
#[allow(non_camel_case_types, non_snake_case, non_upper_case_globals, unused)]
#[allow(non_camel_case_types, non_snake_case, non_upper_case_globals, unused,
clippy::too_many_arguments,)]
pub mod #name {
extern crate alloc;

Expand Down

0 comments on commit 37e07c4

Please sign in to comment.