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
Improved warning reporting to display line number and column
in the format: `fileName.fs(lineNumber, column)`.
This feature is particularly useful in environments like
VSCode, which highlights these locations and makes them
clickable. When clicked, VSCode will open the corresponding
file at the exact line and position of the cursor.
This functionality allows developers to quickly navigate to the
source of the issue, significantly speeding up the
debugging process.
<value>Lambda may be able to be replaced with composition. e.g. `fun x -> x |> isValid |> not` could be replaced with `isValid >> not`.</value>
0 commit comments