babble icon indicating copy to clipboard operation
babble copied to clipboard

Stop! Bracket style!

Open simonwheatley opened this issue 9 years ago • 1 comments

We should adhere to WordPress coding styles, particularly with respect to brackets in conditionals.

This style:

if ( stuff_exists() )
    do_a_thing();

Should be:

if ( stuff_exists() ) {
    do_a_thing();
}

simonwheatley avatar Mar 02 '15 22:03 simonwheatley

Noting that we're calling this issue optional for the Code Review milestone.

simonwheatley avatar Jul 10 '15 09:07 simonwheatley