Skip to content

Commit

Permalink
Setup silence warnings for imports in scala 3
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Oct 21, 2024
1 parent da58bf3 commit b23ee26
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,11 @@ val commonSettings = Seq(
"-Yretain-trees",
// tolerate some nested macro expansion
"-Xmax-inlines",
"64"
"64",
// silence warnings
"-Wconf:cat=unused-imports&origin=scala\\.collection\\.compat\\..*:s" +
",cat=unused-imports&origin=magnolify\\.shims\\..*:s" +
",cat=unused-imports&origin=magnolify\\.scalacheck\\.MoreCollectionsBuildable\\..*:s"
)
case Some((2, 13)) =>
Seq(
Expand Down

0 comments on commit b23ee26

Please sign in to comment.