sbt-typelevel-settings currently sets:
javacOptions ++= Seq(
"-encoding",
"utf8",
"-Xlint:all"
),
and
javacOptions ++= {
if (tlFatalWarnings.value)
Seq("-Werror")
else
Seq.empty
},
I started a PR to add these to sbt-tpolecat. Would the idea be to go all-out and add class JavacOption and stuff?
sbt-typelevel-settings currently sets:
and
I started a PR to add these to sbt-tpolecat. Would the idea be to go all-out and add
class JavacOptionand stuff?