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
{{ message }}
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
If I have the following imports (formatted with spaces.inImportCurlyBraces = true in scalafmt, which adds spaces within the curly braces):
importbar.{ Bar=>Baz, _ }
then scalafix removes the spaces within the curly braces:
importbar.{Bar=>Baz, _}
I believe that this is the same issue as #127 but I have groupedImports = Explode in my scalafix config instead of Merge. I think that we should apply the fix from #127 to Explode as well.
The text was updated successfully, but these errors were encountered:
If I have the following imports (formatted with
spaces.inImportCurlyBraces = true
in scalafmt, which adds spaces within the curly braces):then scalafix removes the spaces within the curly braces:
I believe that this is the same issue as #127 but I have
groupedImports = Explode
in my scalafix config instead ofMerge
. I think that we should apply the fix from #127 toExplode
as well.The text was updated successfully, but these errors were encountered: