Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 513 Bytes

RCS1025.md

File metadata and controls

33 lines (23 loc) · 513 Bytes

RCS1025: Add new line before enum member

Property Value
Id RCS1025
Category Formatting
Severity None

Example

Code with Diagnostic

enum Foo { A, B, C, } // RCS1025

Code with Fix

enum Foo
{
    A,
    B,
    C,
}

See Also

(Generated with DotMarkdown)