include::../description.adoc[] == Noncompliant Code Example ---- if(someCondition) DoSomething(); ---- == Compliant Solution ---- if(someCondition) { DoSomething(); } ---- == Exceptions Anonymous functions containing a single statement are ignored. Block statements are not considered either. ---- Func item1 = o => { return true; }; // Compliant Func item1 = o => { var r = false; return r; }; // Noncompliant ---- ifdef::env-github,rspecator-view[] == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]