Last active
May 19, 2018 17:00
-
-
Save isuzuki/db92a516849624429251ddcdf5238a87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
organization := "io.github.isuzuki" | |
name := "scala-samples" | |
version := "0.1" | |
scalaVersion := "2.12.6" | |
scalacOptions ++= Seq( | |
"-deprecation", | |
"-encoding", "UTF-8", | |
"-feature", | |
"-target:jvm-1.8", | |
"-Xfatal-warnings", | |
"-Xfuture", | |
"-Ywarn-dead-code", | |
"-Ywarn-numeric-widen", | |
"-Ywarn-value-discard", | |
"-Ywarn-unused", | |
"-Ywarn-unused-import", | |
"-Yno-adapted-args" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment