Open
Description
This line is 105 characters long so it should break before the ->LongModuleName.longFunctionName
, but it does not.
(LongModuleName.makeNoParams() :> LongModuleName.subTypeOfLongTypeName)->LongModuleName.longFunctionName
This one breaks between the parameters of the make function:
// Before formatting
(LongModuleName.make( ~a=1, ~b="",) :> LongModuleName.subTypeOfLongTypeName)->LongModuleName.longFunctionName
// After formatting
(LongModuleName.make(
~a=1,
~b="",
) :> LongModuleName.subTypeOfLongTypeName)->LongModuleName.longFunctionName