Skip to content

Commit

Permalink
Fix -Wconf in Scala 3
Browse files Browse the repository at this point in the history
  • Loading branch information
BalmungSan committed Oct 19, 2024
1 parent 0ba5877 commit 2253fb3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ lazy val commonSettings = Def.settings(
else if (scalaVersion.value.startsWith("3.3."))
Seq(
// Make all warnings verbose.
"-Wconf:any:verbose"
// Scala 3 doesn't support multiple -Wconf settings.
// Thus, this one is commented to enable the test ones.
// "-Wconf:any:verbose"
)
else
Seq.empty
Expand Down

0 comments on commit 2253fb3

Please sign in to comment.