Skip to content

Commit

Permalink
disabled warnings for sbt console mode
Browse files Browse the repository at this point in the history
  • Loading branch information
rtkaczyk committed Oct 17, 2017
1 parent e78f880 commit b2b99e8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ scalacOptions := Seq(
"-Ywarn-unused-import"
)

scalacOptions in (Compile, console) ~= (_.filterNot(Set(
"-Ywarn-unused-import",
"-Xfatal-warnings"
)))

parallelExecution in Test := false

testOptions in Test += Tests.Argument("-oD")
Expand Down

0 comments on commit b2b99e8

Please sign in to comment.