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
Currently, sbt-scalafix automatically addCompilerPlugin(semanticdb-scalac) and scalacOptions += "-Yrangepo". This automatic setup does not work for builds that use libraryDependencies := or scalacOptions :=. I propose we stop with the automatic installation and recommend users to manually setup the compiler plugin
We currently enable the settings from scalafixEnable in ScalafixPlugin. The problem is that many build.sbt override the settings defined by ScalafixPlugin, making the setup break. The scalafixEnable command bypasses this problem because you have to run it manually in the sbt shell after the build is loaded.
Currently, sbt-scalafix automatically
addCompilerPlugin(semanticdb-scalac)
andscalacOptions += "-Yrangepo"
. This automatic setup does not work for builds that uselibraryDependencies :=
orscalacOptions :=
. I propose we stop with the automatic installation and recommend users to manually setup the compiler pluginAlternatively, it's possible to configure this step with the
scalafixEnable
command for a single sbt session.The text was updated successfully, but these errors were encountered: