Skip to content

Commit

Permalink
remove -P:semanticdb:synthetics:on by default
Browse files Browse the repository at this point in the history
As it only works with Scala 2.x, the few rule authors relying on it
would have to disable Scala 3 testing which is on by default, so we'd
better make it an opt-in rather than an opt-out.
  • Loading branch information
github-brice-jaglin committed May 20, 2021
1 parent 3b236a2 commit bfa2e49
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/main/g8/scalafix/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,7 @@ lazy val input = projectMatrix
publish / skip := true
)
.defaultAxes(VirtualAxis.jvm)
.jvmPlatform(
scalaVersions = rulesCrossVersions,
settings = Seq(
scalacOptions += "-P:semanticdb:synthetics:on"
)
)
.jvmPlatform(scalaVersions = Seq(scala3Version))
.jvmPlatform(scalaVersions = rulesCrossVersions :+ scala3Version)

lazy val output = projectMatrix
.settings(
Expand Down

0 comments on commit bfa2e49

Please sign in to comment.