Open
Description
Category: Layout
Rule: Curly braces must not be omitted when parent expression spans multiple lines.
Rationale: Improve readability and maintainability of the code (when SA1503 is off).
See also: SA1503:CurlyBracketsMustNotBeOmitted and SA1519:CurlyBracketsMustNotBeOmittedFromMultiLineChildStatement
Bad:
if (alpha == beta &&
beta == gamma)
alpha = delta;
Good:
if (alpha == beta &&
beta == gamma)
{
alpha = delta;
}