We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The new formatting implemented in #1066 have brought several new bugs.
An empty argument list is splitted to several lines if the closing bracket is exactly the 100th character of the line
Input:
private static readonly ModelBinderProviderCollection _providers = CreateDefaultCollection();
Output:
private static readonly ModelBinderProviderCollection _providers = CreateDefaultCollection( );
Expected behavior:
In an argument list with one lambda the closing bracket is moved to the next line if it's exactly the 100th character of the line
It.Is<ExceptionLoggerContext>( c => c.ExceptionContext == expectedContext )
It.Is<ExceptionLoggerContext>(c => c.ExceptionContext == expectedContext )
An argument list with a lambda is incorecctly formatted if the lambda contains other nested argument list with a lambda
this.Where______________________________________( selector: static longName_________________ => { return Method(x => x.Prop); } );
this.Where______________________________________( selector: static longName_________________ => { return Method(x => x.Prop); });
The text was updated successfully, but these errors were encountered:
@belav I've fixed the first and third buhs, but I need more time to fix the second
Sorry, something went wrong.
43ba8d7
@Rudomitori thanks for taking care of all of these!
No branches or pull requests
The new formatting implemented in #1066 have brought several new bugs.
First
An empty argument list is splitted to several lines if the closing bracket is exactly the 100th character of the line
Input:
Output:
Expected behavior:
Second
In an argument list with one lambda the closing bracket is moved to the next line if it's exactly the 100th character of the line
Input:
Output:
Expected behavior:
Third
An argument list with a lambda is incorecctly formatted if the lambda contains other nested argument list with a lambda
Input:
Output:
Expected behavior:
The text was updated successfully, but these errors were encountered: