-
-
Notifications
You must be signed in to change notification settings - Fork 412
Closed
Labels
component: formatterstype: supportUser support tickets, questions, help with setup etc.User support tickets, questions, help with setup etc.
Description
Hi,
Just working at setting up my work env for haskell, been working with elm for some time now and I love the way records are formatted with a starting comma. Can't figure out how to turn
data Employee = Employee
{ employeeFirstName :: String,
employeeLastName :: String,
employeeAge :: Int,
company :: String,
email :: String,
salary :: Int
}
into
data Employee = Employee
{ employeeFirstName :: String
, employeeLastName :: String
, employeeAge :: Int
, company :: String
, email :: String
, salary :: Int
}
I know that the current formater used by the extension is stylish-haskell at least I hope it is.
Metadata
Metadata
Assignees
Labels
component: formatterstype: supportUser support tickets, questions, help with setup etc.User support tickets, questions, help with setup etc.