Original issue fsprojects/fantomas#1526
This repository does not provide any sample of computation expressions formatting.
I propose to define
let asyncDoSomething () = async {
do! asyncSomething ()
let! result = asyncGetSomething ()
()
}
let items = seq {
"item1"
"item2"
}
as a standard formatting option.
Currently Fantomas changes the code above to
let asyncDoSomething () = async {
do! asyncSomething ()
let! result = asyncGetSomething ()
()
}
let items = seq {
"item1"
"item2"
}
Original issue fsprojects/fantomas#1526
This repository does not provide any sample of computation expressions formatting.
I propose to define
as a standard formatting option.
Currently Fantomas changes the code above to