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
- nl_after_switch - Add or remove blank line after
switch
. - nl_after_func_body_class - The number of newlines after '}' of a multi-line function body in a class declaration.