disallowOperatorBeforeLineBreak

Requires putting certain operators on the next line rather than on the current line before a line break.

Types: Array or Boolean

Values: Array of operators to apply to or true

Example

"disallowOperatorBeforeLineBreak": ["+", "."]
Valid
$el.on( 'click', fn )
    .appendTo( 'body' );

var x = 4 + 5
    + 12 + 13;
Invalid
$el.on( 'click', fn ).
    appendTo( 'body' );

var x = 4 + 5 +
    12 + 13;
Rule source
Test source