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
version = 2.2.0
Code formatted with scalafmt version 2.0.1 (no configuration, just version = 2.0.1):
2.0.1
version = 2.0.1
final class Dummy[F[+_, +_]: BIOApplicative] extends DIResource.Make_[F[Nothing, ?], Component[F]]( acquire = Ref(Map.empty[Key, Item]).map(new Dummy.Impl(_)) )(release = F.unit)
But, scalafmt version 2.2.0 formats the same code like this:
2.2.0
final class Dummy[F[+_, +_]: BIOApplicative] extends DIResource.Make_[F[Nothing, ?], Component[F]]( acquire = Ref(Map.empty[Key, Item]).map(new Dummy.Impl(_)) ) (release = F.unit)
There's an additional space before the second parameter list in:
) (release = F.unit)
This space just appeared when upgrading versions, there doesn't seem to be a configuration to control it.
None so far
The text was updated successfully, but these errors were encountered:
Already fixed in #1535. Try to update to 2.1.1, please
Sorry, something went wrong.
@poslegm Version 2.2.1 works 👍
2.2.1
No branches or pull requests
Steps
Code formatted with scalafmt version
2.0.1
(no configuration, justversion = 2.0.1
):But, scalafmt version
2.2.0
formats the same code like this:Problem
There's an additional space before the second parameter list in:
This space just appeared when upgrading versions, there doesn't seem to be a configuration to control it.
Workaround
None so far
The text was updated successfully, but these errors were encountered: