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
style = defaultWithAlign assumeStandardLibraryStripMargin = true maxColumn = 120 rewrite.rules = [ExpandImportSelectors, PreferCurlyFors] newlines.neverInResultType = true newlines.sometimesBeforeColonInMethodReturnType = false rewrite.redundantBraces.stringInterpolation = true
Given code like this:
def call(x: Int)(f: Int => Int): Unit = ??? call(1) { x => }
When I run scalafmt through IDEA.
Scalafmt formats code like this:
I would like the formatted output to look like this:
The text was updated successfully, but these errors were encountered:
48acd6c
No branches or pull requests
Steps
Given code like this:
When I run scalafmt through IDEA.
Problem
Scalafmt formats code like this:
Expectation
I would like the formatted output to look like this:
The text was updated successfully, but these errors were encountered: