Wrap function call arguments

EditorConfig key: js-wrap-arguments-style

Wrap function call arguments

js-wrap-arguments-style

Default value:

unset

Possible values:

  • unset
  • wrap_if_long
  • chop_if_long
  • chop_always

Examples

unset
wrap_if_long
f(a, b, c)
chop_if_long
f(a,
  b,
  c)
chop_always
f(
  a,
  b,
  c
)