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 f456e87 commit 130d889Copy full SHA for 130d889
project/BuildSettings.scala
@@ -44,16 +44,8 @@ object BuildSettings {
44
List(
45
)
46
}), // Stop these being errors, they are fine.
47
- Test / scalacOptions --= (CrossVersion.partialVersion(scalaVersion.value) match {
48
- case Some((2, n)) if n >= 13 =>
49
- List(
50
- "-Wnonunit-statement"
51
- // other scalac options for 2.13+
52
- )
53
- case _ =>
54
55
56
- }),
+ Test / scalacOptions --=
+ List("-Wnonunit-statement"),
57
scalacOptions --= {
58
if (sys.env.contains("CI"))
59
Seq.empty
0 commit comments