I get notified about \"unchecked\" warnings when I compile my Scala project with SBT 0.11, but I can\'t see the warnings themselves.
What I see is
[w
I've found the answer here.
The solution is to add
scalacOptions ++= Seq("-unchecked", "-deprecation")
to the project's build.sbt file.
build.sbt
It can also take "-feature" as an option and works with sbt 0.13