diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index b0e161416..3b8ffe084 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -15,3 +15,6 @@ c2237571a1806b6c97967870f8e5a5b68c0b58f0 # Scala Steward: Reformat with scalafmt 3.10.1 cc237edbf8c925b3c98ade768c4a0b80ee5691e3 + +# Scala Steward: Reformat with scalafmt 3.10.3 +7b95a6d151ddb227d6c0e2e393ca633d7d843687 diff --git a/.scalafmt.conf b/.scalafmt.conf index cbe941411..6a8429571 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.10.1 +version = 3.10.3 maxColumn = 120 diff --git a/module/ldbc-connector/js-jvm/src/test/scala/ldbc/connector/pool/HouseKeeperTest.scala b/module/ldbc-connector/js-jvm/src/test/scala/ldbc/connector/pool/HouseKeeperTest.scala index 7e1a29e0e..4ab95373b 100644 --- a/module/ldbc-connector/js-jvm/src/test/scala/ldbc/connector/pool/HouseKeeperTest.scala +++ b/module/ldbc-connector/js-jvm/src/test/scala/ldbc/connector/pool/HouseKeeperTest.scala @@ -275,7 +275,7 @@ class HouseKeeperTest extends FTestPlatform: yield // Connections should be validated and maintained assert(finalStatus.total >= 1, "Should maintain at least minimum connections") - // Connections should be validated and maintained + // Connections should be validated and maintained } } diff --git a/module/ldbc-core/src/main/scala/ldbc/free/PreparedStatementIO.scala b/module/ldbc-core/src/main/scala/ldbc/free/PreparedStatementIO.scala index 12db4a73b..ef7c7580d 100644 --- a/module/ldbc-core/src/main/scala/ldbc/free/PreparedStatementIO.scala +++ b/module/ldbc-core/src/main/scala/ldbc/free/PreparedStatementIO.scala @@ -164,7 +164,7 @@ object PreparedStatementIO: override def raiseError[A](e: Throwable): PreparedStatementIO[A] = module.raiseError(e) override def handleErrorWith[A](fa: PreparedStatementIO[A])( f: Throwable => PreparedStatementIO[A] - ): PreparedStatementIO[A] = module.handleErrorWith(fa)(f) + ): PreparedStatementIO[A] = module.handleErrorWith(fa)(f) override def monotonic: PreparedStatementIO[FiniteDuration] = module.monotonic override def realTime: PreparedStatementIO[FiniteDuration] = module.realtime override def suspend[A](hint: Sync.Type)(thunk: => A): PreparedStatementIO[A] = module.suspend(hint)(thunk)