Skip to content

Commit

Permalink
fix: Optimize nix flake (#384)
Browse files Browse the repository at this point in the history
* optimize nix flake

* Supress clippy warnings
  • Loading branch information
c12i authored Oct 11, 2024
1 parent 5bf7183 commit 145f1f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/templates/collection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/templates/entry_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/templates/link_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 145f1f8

Please sign in to comment.