6502-opcodes/project/Scala3Plugin.scala

22 lines
518 B
Scala

import sbt.Keys.*
import sbt.*
/**
* Automatically enriches projects with the following settings (despite the word "override").
*/
object Scala3Plugin extends AutoPlugin {
/**
* Thus plug-in will automatically be enabled; it has no requirements.
*/
override def trigger: PluginTrigger = AllRequirements
override val buildSettings: Seq[Setting[?]] = Seq(
scalaVersion := "3.3.1"
)
override val projectSettings: Seq[Setting[?]] = Seq(
scalacOptions ++= Seq("-indent", "-rewrite")
)
}