Brace style

EditorConfig key: css-brace-style

Brace style

css-brace-style

Placement of the opening brace for rule bodies.

Default value:

unset

Possible values:

  • unset
  • end_of_line
  • end_of_line_no_space
  • next_line
  • next_line_shifted
  • next_line_shifted_2

Examples

unset
end_of_line
.a {
  color: red;
}
end_of_line_no_space
.a{
  color: red;
}
next_line
.a
{
  color: red;
}
next_line_shifted
.a
  {
  color: red;
  }
next_line_shifted_2
.a
  {
    color: red;
  }