Automattic / babble

Multilingual WordPress done right.
https://wordpress.org/plugins/babble/
246 stars 50 forks source link

Stop! Bracket style! #217

Open simonwheatley opened 9 years ago

simonwheatley commented 9 years ago

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 commented 9 years ago

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