我正在寻找设置告诉Resharper不要缩进if和其相应的else之间的注释。
示例:
if()
{
}
//Resharper keeps indenting this line
else
{
}
我希望它的格式如下:
if()
{
}
//The comment should line up with the braces and the "else"
else
{
}
我已经完成了Resharper缩进和线设置,但无法找到正确的设置。我需要设置哪些设置才能获得所需的格式?