I looked and searched for ways to disable comment indentation when saving C # files in Visual Studio 2015 with Resharper 9.0.0.0 installed.
I would like pseudo code before I start writing the actual code. However, I tweaked the settings for Visual Studio and Resharper to no avail. Therefore, for example, I want the comments to look like this:
private string ToggleString(string input)
{
return input;
}
When I save CTRL+ s, it is obtained as follows:
private string ToggleString(string input)
{
return input;
}
How to disable automatic format?
source
share