I used to write
data A = A {
a :: Double
}
deriving(Eq, Show)
but now i prefer
data A = A {
a :: Double
} deriving(Eq, Show)
I think the answer will be no, but i ask anyway: is there a code formatter for Haskell?
|
I used to write
but now i prefer
I think the answer will be no, but i ask anyway: is there a code formatter for Haskell?
| |||
|
feedback
|
|
There is haskell-src-exts which will parse your code and it has a pretty printing module for printing the AST to a string. E.g.
Example:
Alternatively you can write a pretty printer yourself (even based on the above if you just want to specialise), and then you can have whatever style you want. Replace Then you can hook it up with Emacs to reformat every time you hit save or something. | |||||||||
feedback
|
|
I've written a small script for that same purpose: https://github.com/djv/small/blob/master/tidy.hs I call it from vim to reformat my code. | |||
|
feedback
|