Files
6502-opcodes/project/Scala3Plugin.scala
2022-06-13 20:18:55 -04:00

19 lines
461 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 projectSettings: Seq[Setting[_]] = Seq(
scalaVersion := "3.1.2",
scalacOptions ++= Seq("-indent", "-rewrite")
)
}