The main reason for posting this is ktfmt's configurability (As mentioned here by Google [(ref)](https://github.com/google/google-java-format/wiki/FAQ#i-just-need-to-configure-it-a-bit-differently-how); pointed out by [ktfmt's README](https://github.com/facebook/ktfmt/blob/main/README.md)) Especially when you are writing IJ Compose codes, it produces something like this: ```kt fun main() = application { Window(title = "Conna", onCloseRequest = ::exitApplication) { App() } } ``` This is not expected as it produces a lot of wrapping without any line ending, and I cannot config anything, even `max-line-length` to prevent this. 😔 Expected: ```kt fun main() = application { Window(title = "Conna", onCloseRequest = ::exitApplication) { App() } } ```