diff --git a/src/templates/collection.rs b/src/templates/collection.rs index b459e1dc..38501fae 100644 --- a/src/templates/collection.rs +++ b/src/templates/collection.rs @@ -28,7 +28,7 @@ pub struct ScaffoldCollectionData { } // TODO: group some params into a new-type or prefer builder pattern -#[allow(clippy::too_many_arguments)] +#[allow(unknown_lints, clippy::too_many_arguments, clippy::manual_inspect)] pub fn scaffold_collection_templates( mut app_file_tree: FileTree, template_file_tree: &FileTree, diff --git a/src/templates/entry_type.rs b/src/templates/entry_type.rs index 680855a2..0f0b7887 100644 --- a/src/templates/entry_type.rs +++ b/src/templates/entry_type.rs @@ -25,7 +25,7 @@ pub struct ScaffoldEntryTypeData<'a> { } // TODO: group some params into a new-type or prefer builder pattern -#[allow(clippy::too_many_arguments)] +#[allow(unknown_lints, clippy::too_many_arguments, clippy::manual_inspect)] pub fn scaffold_entry_type_templates( mut app_file_tree: FileTree, template_file_tree: &FileTree, diff --git a/src/templates/link_type.rs b/src/templates/link_type.rs index 1e9062be..e5e6138e 100644 --- a/src/templates/link_type.rs +++ b/src/templates/link_type.rs @@ -26,7 +26,7 @@ pub struct ScaffoldLinkTypeData<'a> { } // TODO: group some params into a new-type or prefer builder pattern -#[allow(clippy::too_many_arguments)] +#[allow(unknown_lints, clippy::too_many_arguments, clippy::manual_inspect)] pub fn scaffold_link_type_templates( mut app_file_tree: FileTree, template_file_tree: &FileTree,