Stylianos Gakis
07/15/2024, 12:00 PMwith(pluginManager) {
apply(libs.plugins.apollo.get().pluginId)
}
to this:
with(pluginManager) {
apply(
libs.plugins.apollo
.get()
.pluginId,
)
}
and why it does so since I am not reaching the max line width at all here, I am at ~50 while the max line width I got configured is 120. Also not sure when it decides to add the break or not.
Currently this is on the IDEA ktlint 0.23.0 plugin, which seems to use ktlint 1.3.1.Paul Dingemans
07/15/2024, 1:59 PM