We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dbef3c commit 9f198b6Copy full SHA for 9f198b6
src/FSharpLint.Core/Application/Lint.fs
@@ -385,9 +385,9 @@ module Lint =
385
Configuration.loadConfig "./fsharplint.json"
386
|> Ok
387
with
388
- | ex ->
389
- // TODO: log default config load error
+ | :? System.IO.FileNotFoundException ->
390
Ok Configuration.defaultConfiguration
+ | _ as ex -> Error (string ex)
391
392
/// Lints an entire F# project by retrieving the files from a given
393
/// path to the `.fsproj` file.
0 commit comments