Skip to content

Commit

Permalink
remove unused suppressions
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Nov 27, 2023
1 parent 3aaab03 commit f9a84f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions leptos_macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ pub fn component(args: proc_macro::TokenStream, s: TokenStream) -> TokenStream {
mod #module_name {
use super::*;

#[allow(non_snake_case, dead_code, clippy::too_many_arguments, clippy::needless_lifetimes, unused_variables)]
#[allow(non_snake_case, dead_code, clippy::too_many_arguments)]
#unexpanded
}
}
Expand All @@ -633,7 +633,7 @@ pub fn component(args: proc_macro::TokenStream, s: TokenStream) -> TokenStream {
mod #module_name {
use super::*;

#[allow(non_snake_case, dead_code, clippy::too_many_arguments, clippy::needless_lifetimes, unused_variables)]
#[allow(non_snake_case, dead_code, clippy::too_many_arguments)]
#dummy
}
}
Expand Down

0 comments on commit f9a84f5

Please sign in to comment.