You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's already a rule to favor typed ignore instead of the non-typed version,
the same logic is applicable to Async.Ignore, so maybe FSharpLint should
also throw a warning for usage of non-typed Async.Ignore.
Description
There's already a rule to favor typed ignore instead of the non-typed version,
the same logic is applicable to Async.Ignore, so maybe FSharpLint should
also throw a warning for usage of non-typed Async.Ignore.
Expected behavior
In this sample FSharpLint should throw a warning to ask user
to use typed Async.Ignore like this:
do! self.ConnectToDirectory() |> Async.Ignore<int>
Actual behavior
FSharpLint doesn't throw any warning.
The text was updated successfully, but these errors were encountered: