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
will compile Foobar.scala (it's in sources) but scalafix won't fix it since the root directory is part of unmanagedSourceDirectories. I'm not sure which sbt setting is appropriate to use here besides sources. I prefer to avoid sources since that includes managed sources (code generated) which is pretty meaningless to fix. I might make sense to read sources in scalafix instead of unmanagedSourceDirectories by default.
Question is, should scalafix consider *.scala files in the baseDirectory?
The text was updated successfully, but these errors were encountered:
A project like this
will compile Foobar.scala (it's in
sources
) but scalafix won't fix it since the root directory is part of unmanagedSourceDirectories. I'm not sure which sbt setting is appropriate to use here besidessources
. I prefer to avoidsources
since that includes managed sources (code generated) which is pretty meaningless to fix. I might make sense to readsources in scalafix
instead ofunmanagedSourceDirectories
by default.Question is, should scalafix consider *.scala files in the baseDirectory?
The text was updated successfully, but these errors were encountered: