Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 519 Bytes

RCS1029.md

File metadata and controls

36 lines (26 loc) · 519 Bytes

RCS1029: Format binary operator on next line

Property Value
Id RCS1029
Category Formatting
Severity None

Example

Code with Diagnostic

if (x && // RCS1029
    y &&
    z)
{
}

Code with Fix

if (x
    && y
    && z)
{
}

See Also

(Generated with DotMarkdown)