From 8c43d6b35cb524075804ce16175ed2a8b3ee6c2f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 5 Aug 2023 17:09:31 +0200 Subject: [PATCH] Update scalafmt-core to 3.7.12 (#1184) * Update scalafmt-core to 3.7.12 * Reformat with scalafmt 3.7.12 Executed command: scalafmt --non-interactive * Add 'Reformat with scalafmt 3.7.12' to .git-blame-ignore-revs --- .git-blame-ignore-revs | 3 +++ .scalafmt.conf | 2 +- build.sbt | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 74764e777b..5c5c8cda32 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 b2237659a8..064736ed4f 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 080ca7baf4..ecd2834c95 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.*") ) )