Brace Indentation help
I have been able to configure indentation to "my" style except for braces. I prefer to have the brace indented to the same level as the code body as follows:
public void FirmwareCallback ( int verify, int type, float progress, float max, string text, object starutil )
{
float percentDone = ( progress * 100 ) / max;
this.FirmwareWriteValue ( verify, type, percentDone, text );
}
Resharper always gives me:
public void FirmwareCallback ( int verify, int type, float progress, float max, string text, object starutil )
{
float percentDone = ( progress * 100 ) / max;
this.FirmwareWriteValue ( verify, type, percentDone, text );
}
I can easily fix it with Studio ^K^D but it is a pain to have to do this every time Resharper touches my code.
Please sign in to leave a comment.
Fixed. I spent some more time in the menus because I figured for sure something like this was not simply missed. The format style I want is whitesmiths and it does precisely what I was after.