Skip to content

Commit 204221a

Browse files
authored
Merge pull request #21 from LeeTibbert/PR_build_sbt_scalac_2020-04-17
build.sbt: Rework scalacOptions
2 parents dd95090 + 300ba93 commit 204221a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

build.sbt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ lazy val commonSettings = Seq(
3535
version := "0.1.1-SNAPSHOT",
3636
scalaVersion := "2.11.12",
3737
scalacOptions ++= Seq(
38+
"-deprecation",
39+
"-encoding",
40+
"utf8",
3841
"-feature",
39-
"-Ywarn-unused-import",
40-
"-Xfatal-warnings"
42+
"-unchecked",
43+
"-Xfatal-warnings",
44+
"-Ywarn-unused-import"
4145
),
4246
Compile / doc / scalacOptions -= "-Xfatal-warnings",
4347
publish / skip := true,

0 commit comments

Comments
 (0)