You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version = 2.7.3
maxColumn = 120
docstrings.style = SpaceAsterisk
Steps
Given code like this:
/** * * Bar * Baz*/objectFoo { }
Problem
Scalafmt formats code like this:
/** * Bar * Baz*/objectFoo { }
Expectation
I would like the formatted output to look like this:
/** Bar * Baz*/objectFoo { }
Notes
Per the ScalaDoc style: "the text in the Scaladoc styles begins on the first line of the comment. This format saves vertical space in the source file."
Is there a way I can acheive this without setting docstrings.wrap to yes?
The text was updated successfully, but these errors were encountered:
docstrings.style = SpaceAsterisk
Steps
Given code like this:
Problem
Scalafmt formats code like this:
Expectation
I would like the formatted output to look like this:
Notes
Per the ScalaDoc style: "the text in the Scaladoc styles begins on the first line of the comment. This format saves vertical space in the source file."
Is there a way I can acheive this without setting
docstrings.wrap
toyes
?The text was updated successfully, but these errors were encountered: