We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I run dotnet fantomas file.fs on the following content:
dotnet fantomas file.fs
namespace A type K () = inherit D<S> () with let Hello = "Where did I go?" member x.Where() = "is my members?"
..and get
namespace A type K() = inherit D<S>()
Why is Hello and Where gone?
Hello
Where
The text was updated successfully, but these errors were encountered:
Class with augmentation case (fix fsprojects#239)
09efa8d
Another wrong cases:
type T1 = { x: int} with member __.X = () type T2 = T2 with member __.X = ()
output
type T1 = { x : int } member __.X = () type T2 = T2
Sorry, something went wrong.
After some digging, first case is correct because
type T1 = { x: int} with member __.X = ()
is the same as
type T1 = { x: int} member __.X = ()
No branches or pull requests
I run
dotnet fantomas file.fs
on the following content:..and get
Why is
Hello
andWhere
gone?The text was updated successfully, but these errors were encountered: