I'm not sure if my title is entire accurate, however, I would like to disable the feature in ReSharper formatting where it indents deep (?) upon formatting. The following image describes the behaviour (red = before format, green = after format)
As you can see the indentation for all the statements after the first line are indented very far.
var shouldSendMails = requester.Email != model.Email
|| requester.PhoneNumber != model.PhoneNumber
|| requester.Address != model.Address
|| requester.PostalCode != model.PostalCode
|| requester.City != model.City
|| requester.MedicalInformation != model.MedicalHistory;
Turns into
var shouldSendMails = requester.Email != model.Email
|| requester.PhoneNumber != model.PhoneNumber
|| requester.Address != model.Address
|| requester.PostalCode != model.PostalCode
|| requester.City != model.City
|| requester.MedicalInformation != model.MedicalHistory;
I would like to disable this behaviour. So what I want is when I format the code, it does format the code, but without the 4 extra tabs before putting the new line of code there.
Any help would be greatly appreciated.

