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
"disallowOperatorBeforeLineBreak": ["+", "."]
$el.on( 'click', fn )
.appendTo( 'body' );
var x = 4 + 5
+ 12 + 13;
$el.on( 'click', fn ).
appendTo( 'body' );
var x = 4 + 5 +
12 + 13;