Empty block style

EditorConfig key: js-empty-block-style

Empty block style

js-empty-block-style

Formatting of an empty brace block.

Default value:

unset

Possible values:

  • unset
  • multiline
  • together
  • together_same_line

Examples

unset
multiline
function f()
{
}
together
function f()
{}
together_same_line
function f() {}