Coding style is fairly important. Most major development companies have a document that defines required naming conventions, commenting guidelines, and other little things to do with code style and architecture guidelines.
All of which is very good and helps to promote a working environment in which team members can have good expectations of what their colleagues code will look like.
Just make sure it doesn't get down to the level of a manager forcing a developer to make a change in a code review from something like this :
if( someBool() ) doSomething();
else doNothing();
To something like this simply because they "feel" its the "better" style :
if( someBool() )
{
doSomething();
}
else
{
doNothing();
}
Just please have reasons better than personal preference for style requirements and we can all be happier.