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 template is a guideline, not a strict requirement.
runner.dialect = scala3 version = "3.4.2" maxColumn = 80 align.inInterpolation = true newlines.inInterpolation = oneline
Given code like this:
/** Title * @example * {{{ * println("example") some.example(foo) * }}} */ def foo = ()
When I run scalafmt from VSCode
Scalafmt formats code like this:
/** Title * @example * {{{ * println("example") * e.example(foo) * }}} */ def foo = ()
I would like the formatted output to look like this:
/** Title * @example * {{{ * println("example") * some.example(foo) * }}} */ def foo = ()```
The text was updated successfully, but these errors were encountered:
/** Title * @example * {{{ * println("example") some.example(foo) * }}} */
This is not valid scaladoc. The leading asterisk is required.
Sorry, something went wrong.
I create a new bug report including the * in the example at #3129
*
No branches or pull requests
This template is a guideline, not a strict requirement.
Steps
Given code like this:
When I run scalafmt from VSCode
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: