trailing-section-operators
Description | Whether to place section operators (those that are infixr 0, such as $) in trailing position, continuing the expression indented below |
---|---|
Type | Bool |
Default | true |
Ormolu | true |
Since | v0.17.0.0 |
Examples
foo :: IO ()
foo =
bar $
baz $
bat $
quiz x
foo :: IO ()
foo =
bar
$ baz
$ bat
$ quiz x
For more examples, see the test files.