Putting multiple statements on a single line lowers the code readability and makes debugging the code more complex.
if (someCondition) DoSomething(); // Noncompliant
Write one statement per line to improve readability.
if (someCondition)
{
DoSomething();
}
The rule ignores:
Func<object, bool> item1 = o => { return true; }; // Compliant by exception
Func<object, bool> item1 = o => { var r = false; return r; }; // Noncompliant