2022-02-14 18:07:29 -05:00
|
|
|
import sbt.Keys._
|
|
|
|
import sbt._
|
|
|
|
import scalafix.sbt.ScalafixPlugin.autoImport._
|
|
|
|
|
|
|
|
object LintingPlugin extends AutoPlugin {
|
|
|
|
override def trigger = allRequirements
|
|
|
|
|
|
|
|
override val globalSettings =
|
|
|
|
addCommandAlias("fmt", "; scalafmtSbt; scalafmtAll") ++
|
|
|
|
addCommandAlias("fix", "scalafixAll")
|
|
|
|
|
2022-11-02 16:41:23 -04:00
|
|
|
override val buildSettings =
|
|
|
|
Seq(
|
|
|
|
scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.5.0",
|
|
|
|
semanticdbEnabled := true,
|
|
|
|
semanticdbVersion := scalafixSemanticdb.revision
|
2022-11-02 16:50:34 -04:00
|
|
|
)
|
2022-02-14 18:07:29 -05:00
|
|
|
}
|