diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 74764e777..5c5c8cda3 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -6,3 +6,6 @@ bf41266be61fb4d1fcbe1b46d67fabf33eecb4c9 # Scala Steward: Reformat with scalafmt 3.7.1 7fc704a0ef1ebf825674e8a3dc2d47ae21b636a3 + +# Scala Steward: Reformat with scalafmt 3.7.12 +2772c3cd2a4f9d1e34749127f4d49c0440907ff8 diff --git a/.scalafmt.conf b/.scalafmt.conf index b2237659a..064736ed4 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.7.11" +version = "3.7.12" runner.dialect = scala3 maxColumn = 120 diff --git a/build.sbt b/build.sbt index 080ca7baf..ecd2834c9 100644 --- a/build.sbt +++ b/build.sbt @@ -89,7 +89,7 @@ lazy val mimaSettings = // made the signature more specific but also more correct ProblemFilters.exclude[DirectMissingMethodProblem]("org.specs2.reporter.HtmlBodyPrinter.printStatistics"), // fixed warnings when upgrading to Scala 3.1.3: https://github.com/etorreborre/specs2/commit/763891e99b8ab74cfeb58b557968f17c84b2b3b2 - ProblemFilters.exclude[ReversedMissingMethodProblem]("org.specs2.specification.dsl.mutable.ReferenceDsl.*"), + ProblemFilters.exclude[ReversedMissingMethodProblem]("org.specs2.specification.dsl.mutable.ReferenceDsl.*") ) )