Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 565 Bytes

RCS1001.md

File metadata and controls

36 lines (26 loc) · 565 Bytes

RCS1001: Add braces (when expression spans over multiple lines)

Property Value
Id RCS1001
Category Style
Severity Info

Example

Code with Diagnostic

if (condition)
    Foo( // RCS1001
        x,
        y);

Code with Fix

if (condition)
{
    Foo(
        x,
        y);
}

See Also

(Generated with DotMarkdown)