Having a hard time understanding which rule is the...
# ktlint
s
Having a hard time understanding which rule is the one that turns my code from this:
Copy code
with(pluginManager) {
  apply(libs.plugins.apollo.get().pluginId)
}
to this:
Copy code
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.