Centralize lint configuration (#3055)

This commit is contained in:
Jonas Platte
2024-11-30 16:53:48 +01:00
committed by GitHub
parent 2eaed0badc
commit d84136e1e4
19 changed files with 66 additions and 161 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ pub(crate) fn expand(_attr: Attrs, mut item_fn: ItemFn) -> TokenStream {
pub(crate) struct Attrs;
impl Parse for Attrs {
fn parse(_input: syn::parse::ParseStream) -> syn::Result<Self> {
fn parse(_input: syn::parse::ParseStream<'_>) -> syn::Result<Self> {
Ok(Self)
}
}