6502-opcodes/build.sbt

9 lines
238 B
Plaintext
Raw Normal View History

2020-03-20 23:45:13 -04:00
lazy val root =
project
.in(file("."))
.settings(
initialCommands in console := "import com.htmlism._",
2020-05-11 08:28:13 -04:00
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.2" % "test",
2020-03-20 23:45:13 -04:00
scalafmtOnCompile := true
)