From 457f53b7ee70064075bd95dab163d6ac772ed03e Mon Sep 17 00:00:00 2001 From: Philip Munksgaard Date: Tue, 19 Oct 2021 15:15:19 +0200 Subject: ignore/types: fix futhark type extension Previously, the 'fut' type only matches files called '.fut', while in reality we want to match all files with the '.fut' extension. This commit fixes that issue. PR #2027 --- crates/ignore/src/default_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index 4c5b3479..74d71672 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -69,7 +69,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ "*.f90", "*.F90", "*.f95", "*.F95", ]), ("fsharp", &["*.fs", "*.fsx", "*.fsi"]), - ("fut", &[".fut"]), + ("fut", &["*.fut"]), ("gap", &["*.g", "*.gap", "*.gi", "*.gd", "*.tst"]), ("gn", &["*.gn", "*.gni"]), ("go", &["*.go"]), -- cgit v1.2.3