candy icon indicating copy to clipboard operation
candy copied to clipboard

Wrong indentation for struct in match case

Open JonasWanke opened this issue 6 months ago • 0 comments

Contact Details

No response

Input

Foo %
  Foo -> [
    Key: Value,
  ]

Actual Output

Foo %
  Foo ->
    [
    Key
    :
    Value
    ,
]

Desired Output

Foo %
  Foo -> [Key: Value]

# Or, depending on the length:
Foo %
  Foo -> [
    Key: Value,
  ]

Relevant Log Output

No response

Additional Information

No response

JonasWanke avatar Dec 06 '23 10:12 JonasWanke