Is your feature request specific to Fourmolu?
Describe the current + desired formatting
Current
import Module
( TypeA
( ConstructorA,
fieldA1,
fieldA2
)
, TypeB
( ConstructorB,
fieldB1,
fieldB2
)
)
Desired
import Module
( TypeA
( ConstructorA
, fieldA1
, fieldA2
)
, TypeB
( ConstructorB
, fieldB1
, fieldB2
)
)
** Configuration
indentation: 2
comma-style: leading
import-export-comma-style: leading
record-brace-space: true
indent-wheres: true
respectful: true
haddock-style: single-line
newlines-between-decls: 1
# Conflicts with import-export-comma-style if `true`
diff-friendly-import-export: false
Is your feature request specific to Fourmolu?
Describe the current + desired formatting
Current
Desired
** Configuration