ReSharper empty string after curly braces inside a method

Can I force ReSharper code cleanup to put an empty line after the curly brace inside the method to automatically fix the StyleCop SA1513 warning?

eg. before formatting:

if (!ModelState.IsValid) { return View(model); } var user = await GetCurrentUserAsync(); 

after formatting:

 if (!ModelState.IsValid) { return View(model); } var user = await GetCurrentUserAsync(); 
+7
stylecop resharper
source share

No one has answered this question yet.

See similar questions:

14
Is there an option in ReSharper to add an empty line after the closing bracket

or similar:

86
ReSharper - forces braces around one line
4
Why does Resharper break the line after opening the tool and how to prevent it?
3
Auto Formatting Cutters
2
Format Line does not actually format.
2
ReSharper - no curly braces for a one-line ending statement
one
ReSharper block in case layout
0
Why does ReSharper break a string while waiting and return instructions in different ways?
0
How to prevent blank lines between statements with one line?
0
Incorrect brackets after "Move to another file"
0
How to make Resharper put curly braces on one line?

All Articles