haskell / haskell/stylish-haskell
Add an option to vertically format imports
- Dominant language
- Haskell
- Stars
- 1k
- Forks
- 153
- PR merge metrics
- No merged PRs in 30d
Description
I was wondering if stylish haskell has currrently some way to have the imports with the next layout:
``` Haskell
import OnlineATPs.Defaults ( getDefaults )
import OnlineATPs.Options
( Options
( optATP
, optHelp
, optATPList
, optTime
, optVersion
, optInputFile
)
, processOptions
, printUsage
)
```
With the settings by default I have this output:
``` Haskell
import OnlineATPs.Defaults (getDefaults)
import OnlineATPs.Options (Options (optATP, optATPList, optHelp, optInputFile, optTime, optVersion),
printUsage, processOptions)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.