-
Hi, Could someone help me to understand what is going on here? I wonder how there could be so many diff when I cant find anything if I run scalafmt manually. Thanks in advance ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I suspect that the difference comes from how you run scalafmt and how Scala Steward runs it. Scala Steward uses the scalafmt binary (probably installed via Coursier) and runs that to reformat all files in the project. @yadavan88, you probably use scalafmt via the sbt plugin and run |
Beta Was this translation helpful? Give feedback.
I suspect that the difference comes from how you run scalafmt and how Scala Steward runs it. Scala Steward uses the scalafmt binary (probably installed via Coursier) and runs that to reformat all files in the project. @yadavan88, you probably use scalafmt via the sbt plugin and run
sbt scalafmt
to reformat only files that are part of the sbt build.