We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cb054d commit 0aa2f52Copy full SHA for 0aa2f52
build.sbt
@@ -2,13 +2,16 @@ Global / cancelable := true
2
publish / skip := true // in root
3
4
Global / scalacOptions ++= (
5
- if (isDotty.value) Seq("-Xfatal-warnings", "-language:implicitConversions")
6
- else Seq("-Werror"))
+ if (isDotty.value) Seq("-language:implicitConversions")
+ else Seq()
7
+)
8
9
lazy val commonSettings: Seq[Setting[_]] =
10
ScalaModulePlugin.scalaModuleSettings ++ Seq(
11
Compile / compile / scalacOptions --= (if (isDotty.value) Seq("-Xlint")
12
else Seq()),
13
+ Compile / compile / scalacOptions ++= (if (isDotty.value) Seq("")
14
+ else Seq("-Werror")),
15
)
16
17
lazy val core = project.in(file("core"))
0 commit comments