Outdent commas

EditorConfig key: cpp-outdent-commas

Outdent commas

cpp-outdent-commas

Place commas at a reduced indentation level (before the following item).

Default value:

false

Possible values:

  • true
  • false

Examples

true
int x[] = { 1
          , 2
          , 3 };
false
int x[] = { 1,
            2,
            3 };