Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 516 Bytes

RCS1030.md

File metadata and controls

33 lines (22 loc) · 516 Bytes

RCS1030: Add empty line after embedded statement

Property Value
Id RCS1030
Category Formatting
Severity None

Example

Code with Diagnostic

if (x)
    Foo(); // RCS1030
Bar();

Code with Fix

if (x)
    Foo();

Bar();

See Also

(Generated with DotMarkdown)