I have an F# project that compiles in VS and in Jetbrains Rider. However, the inspection tool displays errors, for instance for the code:
type DU =
| A of int
function
| A -> () // <- jetbrains inspection complains but Jetbrains compiler compiles - so they are out of sync
Some (I guess the later) F# compiler versions complain with FS0019, my VS version and latest Jetbrains Rider compile this code however, VS does not even warn.
My question is not about the code example above but only:
How can I configure the F# inspection?
Or similar: Which tool does the inspection? How can I get inspection and compilation into sync?