From 09d6d8790b15b664f0a1d098b98549f4320e9c8c Mon Sep 17 00:00:00 2001 From: dawe Date: Sun, 10 Sep 2023 14:37:09 +0200 Subject: [PATCH] don't filter out .fsi files --- src/FSharp.Analyzers.Cli/Program.fs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/FSharp.Analyzers.Cli/Program.fs b/src/FSharp.Analyzers.Cli/Program.fs index 6956a40..908daf5 100644 --- a/src/FSharp.Analyzers.Cli/Program.fs +++ b/src/FSharp.Analyzers.Cli/Program.fs @@ -145,13 +145,6 @@ let runProject toolsPath proj (globs: Glob list) = let allSymbolUses = checkProjectResults.GetAllUsesOfAllSymbols() opts.SourceFiles - |> Array.filter (fun file -> - match Path.GetExtension(file).ToLowerInvariant() with - | ".fsi" -> - printInfo $"Ignoring signature file %s{file}" - false - | _ -> true - ) |> Array.filter (fun file -> match globs |> List.tryFind (fun g -> g.IsMatch file) with | Some g ->