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
@belav
Currently we get a line break and the comma inserted, I think it would be simpler to add the comma before the comment.
Thoughts?
Input:
var option = Options.A; var value = option switch { Options.A => "A", Options.B => "B", Options.C => "C" // comment line }; public enum Options { A, B, C, }
Output:
var option = Options.A; var value = option switch { Options.A => "A", Options.B => "B", Options.C => "C" // comment line , }; public enum Options { A, B, C, }
Expected behavior:
var option = Options.A; var value = option switch { Options.A => "A", Options.B => "B", Options.C => "C", // comment line }; public enum Options { A, B, C, }
The text was updated successfully, but these errors were encountered:
Ah, duplicate of #1354 . Sorry.
Sorry, something went wrong.
No branches or pull requests
@belav
Currently we get a line break and the comma inserted, I think it would be simpler to add the comma before the comment.
Thoughts?
Input:
Output:
Expected behavior:
The text was updated successfully, but these errors were encountered: