trailing-section-operators

DescriptionWhether to place section operators (those that are infixr 0, such as $) in trailing position, continuing the expression indented below
TypeBool
Defaulttrue
Ormolutrue
Sincev0.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.