Skip to content

Instantly share code, notes, and snippets.

@sptz45
Created March 25, 2015 15:42
Show Gist options
  • Save sptz45/67a227934adaf31acc72 to your computer and use it in GitHub Desktop.
Save sptz45/67a227934adaf31acc72 to your computer and use it in GitHub Desktop.
scalaOptions
scalacOptions ++= {
Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Xfuture"
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment