From 753fb9adbb8c912d32b38ed32700a5e0f8006a80 Mon Sep 17 00:00:00 2001 From: exoego Date: Tue, 23 Jun 2020 10:23:33 +0900 Subject: [PATCH] Update scalafmt --- .scalafmt.conf | 2 +- .../scala/io/scalajs/nodejs/child_process/SpawnOptions.scala | 2 +- .../src/main/scala/io/scalajs/nodejs/util/InspectOptions.scala | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 98feb0d65..4b055d903 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "2.6.0" +version = "2.6.1" style = defaultWithAlign maxColumn = 120 align.openParenDefnSite = true diff --git a/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/child_process/SpawnOptions.scala b/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/child_process/SpawnOptions.scala index 540830aa7..a6cb4f69b 100644 --- a/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/child_process/SpawnOptions.scala +++ b/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/child_process/SpawnOptions.scala @@ -24,7 +24,7 @@ trait SpawnOptions extends js.Object { */ var detached: js.UndefOr[Boolean] = js.undefined - /** Sets the user identity of the process. (See setuid(2).) */ + /** Sets the user identity of the process. (See setuid(2).) */ var uid: js.UndefOr[Int] = js.undefined /** Sets the group identity of the process. (See setgid(2).) */ diff --git a/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/util/InspectOptions.scala b/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/util/InspectOptions.scala index 5023b37e9..d5871bee2 100644 --- a/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/util/InspectOptions.scala +++ b/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/util/InspectOptions.scala @@ -27,7 +27,8 @@ trait InspectOptions extends js.Object { var colors: js.UndefOr[Boolean] = js.undefined /** If false, then custom inspect(depth, opts) functions exported on the object being inspected - * will not be called. Defaults to true. */ + * will not be called. Defaults to true. + */ var customInspect: js.UndefOr[Boolean] = js.undefined /** If true, then objects and functions that are Proxy objects will be introspected to show their