stylish-haskell icon indicating copy to clipboard operation
stylish-haskell copied to clipboard

Remove excess lines

Open bgohla opened this issue 4 years ago • 0 comments

For example,


module Foo where


data Foo = Foo


foo = undefined


should be reformatted to

module Foo where

data Foo = Foo

foo = undefined

bgohla avatar Mar 10 '20 13:03 bgohla