From 4f2b87f9250830a957a60e7a37a51a4231ad3a26 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 20 Jan 2022 19:56:05 +0100 Subject: [PATCH 1/2] Update scalafmt-core to 3.3.2 --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index d2c6dd9c..bf13f4d7 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.3.1" +version = "3.3.2" runner.dialect = scala213 style = defaultWithAlign maxColumn = 120 From 65a5c54bb24528bcb3181dd4ff240cfb04db4be2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 20 Jan 2022 19:56:25 +0100 Subject: [PATCH 2/2] Reformat with scalafmt 3.3.2 --- .../src/main/scala/io/scalajs/nodejs/fs/Stats.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala b/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala index 3921093e..efe7051c 100644 --- a/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala +++ b/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala @@ -84,7 +84,7 @@ trait IStats[TInt, TFloat] extends js.Object { /** fs.Stats (Stat Time Values) - Objects returned from fs.stat(), fs.lstat() and fs.fstat() and their synchronous * counterparts are of this type. * @example - * {{{ + * {{{ * Stats { * dev: 2114, * ino: 48064969, @@ -105,7 +105,7 @@ trait IStats[TInt, TFloat] extends js.Object { * ctime: Mon, 10 Oct 2011 23:24:11 GMT, * birthtime: Mon, 10 Oct 2011 23:24:11 GMT * } - * }}} + * }}} * @since 0.1.21 */ @js.native @@ -115,7 +115,7 @@ trait Stats extends IStats[Int, Double] * counterparts are of this type. * * @example - * {{{ + * {{{ * BigIntStats { * dev: 2114n, * ino: 48064969n, @@ -140,7 +140,7 @@ trait Stats extends IStats[Int, Double] * ctime: Mon, 10 Oct 2011 23:24:11 GMT, * birthtime: Mon, 10 Oct 2011 23:24:11 GMT * } - * }}} + * }}} * @since 0.1.21 */ @js.native