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
These two indent differently based on the constructor call, maybe they should indent consistently.
private static HashSet<string> ignoredFileNames = new HashSet<string>( StringComparer.OrdinalIgnoreCase ) { "antlr.runtime.dll", "Antlr3.Runtime.dll", "AuthorizeNet.dll" }; // vs private static HashSet<string> ignoredFileNames = new(StringComparer.OrdinalIgnoreCase) { "antlr.runtime.dll", "Antlr3.Runtime.dll", "AuthorizeNet.dll",
The text was updated successfully, but these errors were encountered:
You may want to look at https://github.com/google/google-java-format/wiki/The-Rectangle-Rule. That design principle is a major factor in churn reduction around assignments by google-java-format, and conversely Prettier not using it (and by indirect extension CSharpier) generates churn. See also #765.
Sorry, something went wrong.
No branches or pull requests
These two indent differently based on the constructor call, maybe they should indent consistently.
The text was updated successfully, but these errors were encountered: