We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:>
This line is 105 characters long so it should break before the ->LongModuleName.longFunctionName, but it does not.
->LongModuleName.longFunctionName
(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
Playground link
The text was updated successfully, but these errors were encountered:
Also, it seems strange to have trailing comma for the function arguments (LongModuleName.make( ~a=1, ~b="",))
LongModuleName.make( ~a=1, ~b="",)
Sorry, something went wrong.
No branches or pull requests
This line is 105 characters long so it should break before the
->LongModuleName.longFunctionName
, but it does not.This one breaks between the parameters of the make function:
Playground link
The text was updated successfully, but these errors were encountered: