Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit 4c5d6f8

Browse files
authored
Merge pull request #283 from exoego/scalafmt2
Update scalafmt to 2.6.1
2 parents b6f7c73 + 753fb9a commit 4c5d6f8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "2.6.0"
1+
version = "2.6.1"
22
style = defaultWithAlign
33
maxColumn = 120
44
align.openParenDefnSite = true

app/nodejs-v14/src/main/scala/io/scalajs/nodejs/child_process/SpawnOptions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ trait SpawnOptions extends js.Object {
2424
*/
2525
var detached: js.UndefOr[Boolean] = js.undefined
2626

27-
/** Sets the user identity of the process. (See setuid(2).) */
27+
/** Sets the user identity of the process. (See setuid(2).) */
2828
var uid: js.UndefOr[Int] = js.undefined
2929

3030
/** Sets the group identity of the process. (See setgid(2).) */

app/nodejs-v14/src/main/scala/io/scalajs/nodejs/util/InspectOptions.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ trait InspectOptions extends js.Object {
2727
var colors: js.UndefOr[Boolean] = js.undefined
2828

2929
/** If false, then custom inspect(depth, opts) functions exported on the object being inspected
30-
* will not be called. Defaults to true. */
30+
* will not be called. Defaults to true.
31+
*/
3132
var customInspect: js.UndefOr[Boolean] = js.undefined
3233

3334
/** If true, then objects and functions that are Proxy objects will be introspected to show their

0 commit comments

Comments
 (0)