Simple embedded statement style

EditorConfig key: js-simple-embedded-statement-style

Simple embedded statement style

js-simple-embedded-statement-style

Layout for a single statement inside an if/while/for without braces.

Default value:

do_not_change

Possible values:

  • do_not_change
  • on_single_line
  • line_break

Examples

do_not_change
if (cond) x++;
on_single_line
if (cond) x++;
line_break
if (cond)
  x++;