Does anyone know how to make Resharper add blank lines after brackets when performing code cleanup?
I want to make the following code
if (x == y)
{
int a = x;
int b = y;
int z = a + b;
}
Look like this
if (x == y)
{
int a = x;
int b = y;
int z = a + b;
}