Sharing some coding conventions is a key point to make it possible for a team to efficiently collaborate. This rule makes it mandatory to place open curly braces at the end of lines of code.
if(condition) { doSomething(); }
if(condition) { doSomething(); }
When blocks are inlined (left and right curly braces on the same line), no issue is triggered.
if(condition) {doSomething();}