Skip to content

Commit

Permalink
run clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospb19 committed Dec 15, 2024
1 parent 930acb5 commit e152c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fn is_hidden(entry: &walkdir::DirEntry) -> bool {
entry
.file_name()
.to_str()
.map_or(false, |s| s.starts_with('.'))
.is_some_and(|s| s.starts_with('.'))
}

/// Find all cargo project under the given root path.
Expand Down

0 comments on commit e152c73

Please sign in to comment.