Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Feb 4, 2025
1 parent bb92aa9 commit 0aced63
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions crates/turborepo-lib/src/boundaries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,9 @@ impl Run {

let mut not_supported_extensions = HashSet::new();
for file_path in files {
match file_path.extension() {
Some(ext @ ("svelte" | "vue")) => {
not_supported_extensions.insert(ext.to_string());
continue;
}
_ => {}
if let Some(ext @ ("svelte" | "vue")) = file_path.extension() {
not_supported_extensions.insert(ext.to_string());
continue;
}

if let Some(repo) = repo {
Expand Down

0 comments on commit 0aced63

Please sign in to comment.