6502-opcodes/build.sbt

9 lines
238 B
Plaintext
Raw Normal View History

2020-03-21 03:45:13 +00:00
lazy val root =
project
.in(file("."))
.settings(
initialCommands in console := "import com.htmlism._",
2020-08-11 19:31:35 +00:00
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.1" % "test",
2020-03-21 03:45:13 +00:00
scalafmtOnCompile := true
)