mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-12-21 18:29:22 +00:00
19 lines
441 B
Scala
19 lines
441 B
Scala
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")
|
|
|
|
override val buildSettings =
|
|
Seq(
|
|
semanticdbEnabled := true,
|
|
semanticdbVersion := scalafixSemanticdb.revision
|
|
)
|
|
}
|