Shared naming conventions allow teams to collaborate effectively. This rule raises an issue when an open curly brace is not placed at the end of a line 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();}