Brace style

EditorConfig key: ij-any-brace-style

Brace style

ij-any-brace-style

Placement of opening braces relative to the surrounding statement.

Default value:

end_of_line

Possible values:

  • end_of_line
  • next_line
  • next_line_shifted
  • next_line_shifted2
  • next_line_if_wrapped

Examples

end_of_line
if (x) {
  y;
}
next_line
if (x)
{
  y;
}
next_line_shifted
if (x)
  {
  y;
  }
next_line_shifted2
if (x)
  {
    y;
  }
next_line_if_wrapped
if (x &&
    y)
{
  z;
}