- **Version**: 3.0.5 - **Configuration**: ``` version = "3.0.5" runner.dialect = scala3 rewrite.scala3.removeOptionalBraces = yes ``` ## Steps Given code like this: ```scala object x: val y = List(1).map(v => { println(v) v + 1 }) ``` Scalafmt formats code like this: ```scala object x: val y = List(1).map( v => println(v) v + 1) ``` ## Expectation I would like the formatted output to look like this: ```scala object x: val y = List(1).map(v => { println(v) v + 1 }) // or object x: val y = List(1).map { v => println(v) v + 1 } ```