`chain-method-continution` should take priority over `argument-list-wrapping`. ```Kotlin // Assume that the last // allowed character is // at the X character // on the right X val foo = Bar.builder().baz(1).build() ``` ## Expected Rule behavior ```Kotlin val foo = Bar.builder() .baz(1) .build() ``` ## Current Behavior ```Kotlin val foo = Bar .builder() .baz( 1, ).build() ``` ## Additional information * Current version of ktlint: 1.1.0