is there a way to allow superfluous leading/trailing delimiters in data declarations, module import/export lists, etc. to allow them to be easily rearrangeable? and because it bothers me when one thing in a list of things is written differently
e.g.:
module MyMod (
Thing,
fun1,
fun2,
) where
data Thing =
| Alt1
| Alt2
| Alt3
fun1 = ...
fun2 = ...

eggbug enjoyer