Skip to content

Commit

Permalink
Merge branch 'main' into scalafmt_tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
regadas committed Jan 27, 2022
2 parents 034b6ab + c172dff commit b05d9eb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,13 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
if (tlIsScala3.value)
List(
ProblemFilters.exclude[IncompatibleResultTypeProblem]("cats.parse.Parser#State.error"),
ProblemFilters.exclude[IncompatibleMethTypeProblem]("cats.parse.Parser#State.error_=")
ProblemFilters.exclude[IncompatibleMethTypeProblem]("cats.parse.Parser#State.error_="),
ProblemFilters.exclude[IncompatibleMethTypeProblem]("cats.parse.RadixNode.this"),
ProblemFilters.exclude[DirectMissingMethodProblem]("cats.parse.RadixNode.fsts"),
ProblemFilters.exclude[DirectMissingMethodProblem]("cats.parse.RadixNode.prefixes"),
ProblemFilters.exclude[DirectMissingMethodProblem]("cats.parse.RadixNode.children"),
ProblemFilters.exclude[DirectMissingMethodProblem]("cats.parse.RadixNode.word"),
ProblemFilters.exclude[FinalClassProblem]("cats.parse.RadixNode")
)
else Nil
}
Expand Down

0 comments on commit b05d9eb

Please sign in to comment.