Scalalint is a Scala linter tool, built using Scalafix.
Setup the scalafix
plugin in your sbt build. In project/plugins.sbt
, add:
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.8")
Then enable Scalalint rules in your build, in build.sbt
:
scalafixDependencies in ThisBuild += "org.scalalint" %% "rules" % "0.1.4"
For more information, head to the microsite !