From 0a5c8a708976d1421e6eef0c4c0ffa7a08d6d00d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 14 May 2022 18:12:08 +0200 Subject: [PATCH 1/2] Update scalafmt-core to 3.5.3 --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index cae4bb9..eac98ef 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.5.0 +version = 3.5.3 runner.dialect = scala213 continuationIndent.defnSite = 2 docstrings.style = Asterisk From 699dd567ef59dbcfacf49b1f8bc6d53298c4f9d4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 14 May 2022 18:12:13 +0200 Subject: [PATCH 2/2] Reformat with scalafmt 3.5.3 --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index ed90eb2..3c2b643 100644 --- a/build.sbt +++ b/build.sbt @@ -39,8 +39,8 @@ val previousCirceBsonVersion = "0.5.0" def priorTo2_13(scalaVersion: String): Boolean = CrossVersion.partialVersion(scalaVersion) match { - case Some((2, minor)) if minor < 13 => true - case _ => false + case Some(2, minor) if minor < 13 => true + case _ => false } val baseSettings = Seq( @@ -65,7 +65,7 @@ val baseSettings = Seq( _.filterNot(Set("-Ywarn-unused-import", "-Ywarn-unused:imports")) }, coverageHighlighting := true, - (Compile / scalastyleSources) ++= (Compile / unmanagedSourceDirectories).value + Compile / scalastyleSources ++= (Compile / unmanagedSourceDirectories).value ) val allSettings = baseSettings ++ publishSettings