Open
Description
Is your feature request related to a problem? Please describe.
I am relatively new to Haskell, so I apologize in case I am the problem :)
Describe the solution you'd like
When formatting this:
newtype Html =
Html String
type Title =
String
it gets formatted as:
newtype Html
= Html String
type Title =
String
the equal sign placement bothers me, it isn't consistent between newtype
and type
, maybe this is intended behavior, I am not really sure