Я пытаюсь получить следующее форматирование с помощью scalafmt:
![enter image description here](https://i.stack.imgur.com/YF0x7.png)
До сих пор мне удавалось добиться этого:
![enter image description here](https://i.stack.imgur.com/2ipo0.png)
Со следующими настройками конфигурации:
version = 2.4.2
style = defaultWithAlign
maxColumn = 160 #check how this looks
align.openParenCallSite = false #the important one
rewrite.rules = [RedundantParens]
rewrite.rules = [RedundantBraces]
continuationIndent.defnSite = 2
danglingParentheses = false
verticalMultiline.atDefnSite = true
verticalMultiline.excludeDanglingParens = [def]
verticalMultiline.arityThreshold = 2
verticalMultiline.newlineAfterOpenParen = false
Любые советы? Это даже достижимо, просто используя scalafmt?