nl_before_switch

Add or remove blank line before switch statement.

Possible values are ignore, add, remove and force, default ignore.

Examples

add

Before:

int z = x + y;
switch(z) {
case 1:

code after:

int z = x + y;

switch(z) {
case 1:

remove

Before:

int z = x + y;

switch(z)
{
case 1:

code after:

int z = x + y;
switch(z)
{
case 1:

See also