Remove blank lines near braces in declarations

EditorConfig key: cpp-remove-blank-lines-near-braces-in-declarations

Remove blank lines near braces in declarations

cpp-remove-blank-lines-near-braces-in-declarations

If true, blank lines immediately after '{' and before '}' are removed in declarations.

Default value:

true

Possible values:

  • true
  • false

Examples

true
class Foo {
  int a;
  int b;
};
false
class Foo {

  int a;
  int b;

};