Place comments at first column

EditorConfig key: cpp-place-comments-at-first-column

Place comments at first column

cpp-place-comments-at-first-column

If true, commented-out code is pushed to column 1.

Default value:

false

Possible values:

  • true
  • false

Examples

true
void f() {
// return;
}
false
void f() {
  // return;
}