-
Notifications
You must be signed in to change notification settings - Fork 284
Closed
Description
Required: Configuration
Please paste the smallest possible set of .scalafmt.conf
configuration parameters that reproduces the problem:
version = 3.8.4
...
Steps
Given code like this:
case class X(
field: Int
)
Problem
Scalafmt formats code like this:
case class X(
field: Int
)
There are extra 2 spaces added before field: Int
Expectation
I would like the formatted output to look like this:
case class X(
field: Int
)
Workaround
Have to add extra config:
indent.defnSite = 2
Metadata
Metadata
Assignees
Labels
No labels