Skip to content

Commit 1a77cce

Browse files
authored
Use unaliased options (#293)
1 parent e1b68f4 commit 1a77cce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ lazy val local = crossProject(JSPlatform, JVMPlatform, NativePlatform)
130130
.settings(
131131
moduleName := "shapeless3-local",
132132
scalacOptions ++= List("-Xmax-inlines", "1000"),
133-
scalacOptions += "-Xprint:postInlining",
134-
Compile / console / scalacOptions -= "-Xprint:postInlining",
133+
scalacOptions += "-Vprint:postInlining",
134+
Compile / console / scalacOptions -= "-Vprint:postInlining",
135135
console / initialCommands := """import shapeless3.deriving.* ; import scala.deriving.*"""
136136
)
137137

138138
// Settings
139139

140140
lazy val commonSettings = Seq(
141-
scalacOptions ++= Seq("-Xfatal-warnings", "-Yexplicit-nulls", "-deprecation"),
141+
scalacOptions ++= Seq("-Werror", "-Yexplicit-nulls", "-deprecation"),
142142
Test / scalacOptions += "-Xmax-inlines:256",
143143
Test / scalacOptions -= "-Yexplicit-nulls",
144144
Compile / doc / sources := Nil,

0 commit comments

Comments
 (0)