We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f7863 commit 12b382eCopy full SHA for 12b382e
project/BuildSettings.scala
@@ -37,6 +37,12 @@ object BuildSettings {
37
"-Wconf:cat=deprecation:s"
38
), // Stop these being errors, they are fine.
39
Test / scalacOptions -= "-Wnonunit-statement",
40
+ scalacOptions --= {
41
+ if (sys.env.contains("CI"))
42
+ Seq.empty
43
+ else
44
+ Seq("-Xfatal-warnings", "-Xlint:unused")
45
+ },
46
)
47
48
lazy val noPublishSettings = Seq(
0 commit comments