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();
stylecop resharper
msi
source share