Given the following code:
internal interface IMyInterface
{
bool MethodOne(string parameter);
bool AVeryVeryVeryVeryVeryLongMethodName(string myParameter);
}
internal class MyClass : IMyInterface
{
}
I let Resharper implement the missing members from the interface into MyClass:

This ends up with many spaces between parameter type and name for MethodOne,highlighted in yellow:

How can I configure Resharper to get rid of this spacing? What I want to have is this:

For me disabling
Code Editing - C# - Formatting Style - Tabs, Indents, Alignment - Align similar code in columns -> Multiline method signatureworked to fix this, even though it's not a multiline method signature