Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 826 Bytes

RCS0052.md

File metadata and controls

38 lines (25 loc) · 826 Bytes

RCS0052: Place new line after/before equals token

Property Value
Id RCS0052
Severity None
Required option roslynator_equals_token_new_line

Example

Code with Diagnostic

string s = // RCS0052
    new string(' ', 4);

Code with Fix

string s
    = new string(' ', 4);

Options

Place new line after/before equals sign

roslynator_equals_token_new_line = after|before

Applies to

(Generated with DotMarkdown)