My frontend GUI is in ELM.  My backend is in GO (aka golang).

I love gofmt.  Not everything is my taste but can easily live with it for 
advantages.

elm-format makes some choices I just can't abide.  Top of list, it insists 
on sticking TWO blank lines between the comment above a function and the 
function body.  So:

-- update trick array with new trick & cards
updateTricks : Int -> Cards -> Int -> Tricks -> Tricks
updateTricks trickNum cards nextTurn tricks =
  let

becomes:

-- update trick array with new trick & cards


updateTricks : Int -> Cards -> Int -> Tricks -> Tricks
updateTricks trickNum cards nextTurn tricks =
  let


This seems really weird and just plain wrong to me.  How could anyone like 
this?


-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to