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
Reproduction:
class X { private void Method() { Application.Current.Dispatcher.Invoke(() => { Console.WriteLine("hi!"); }); } }
On 0.25.0, the above code is already formatted properly.
On 0.26.3, it is transformed into this:
class X { private void Method() { Application .Current .Dispatcher .Invoke(() => { Console.WriteLine("hi!"); }); } }
I believe this was introduced by #967 and while I agree that long chains should be split, this seems a bit too eager.
The text was updated successfully, but these errors were encountered:
Field.Method()
I'm including these comments in #1010, which is slightly different but around the same formatting changes in 0.26.0
Sorry, something went wrong.
No branches or pull requests
Reproduction:
On 0.25.0, the above code is already formatted properly.
On 0.26.3, it is transformed into this:
I believe this was introduced by #967 and while I agree that long chains should be split, this seems a bit too eager.
The text was updated successfully, but these errors were encountered: