Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
PgBiel committed Apr 23, 2024
1 parent 2d7b681 commit c02ffe8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion compiler-cli/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,10 @@ pub fn native_files(dir: &Utf8Path) -> Result<impl Iterator<Item = Utf8PathBuf>
.map(|e| e.into_path())
.filter(|path| {
let extension = path.extension().unwrap_or_default();
matches!(extension, "erl" | "hrl" | "ex" | "js" | "mjs" | "ts" | "nix")
matches!(
extension,
"erl" | "hrl" | "ex" | "js" | "mjs" | "ts" | "nix"
)
}))
}

Expand Down

0 comments on commit c02ffe8

Please sign in to comment.