From 0904f55d3e11e2d1b1ed26a4407ad15b258d6003 Mon Sep 17 00:00:00 2001 From: Melvin Wang Date: Mon, 12 Aug 2024 18:37:46 -0700 Subject: [PATCH] ignore/types: include msbuild solution filters Closes #2871 --- 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 2718d0dd..513dba06 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -182,7 +182,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["motoko"], &["*.mo"]), (&["msbuild"], &[ "*.csproj", "*.fsproj", "*.vcxproj", "*.proj", "*.props", "*.targets", - "*.sln", + "*.sln", "*.slnf" ]), (&["nim"], &["*.nim", "*.nimf", "*.nimble", "*.nims"]), (&["nix"], &["*.nix"]),