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
Trailing comma on enum values is formatted incorrectly if the value is followed by a comma. Exactly the same issue as #1354.
Input:
enum MyEnum { First, Second // the second value }
Output:
enum MyEnum { First, Second // the second value , }
Expected behavior:
enum MyEnum { First, Second, // the second value }
Tested with CSharpier.MSBuild 0.30.5
The text was updated successfully, but these errors were encountered:
fixing trailing comma + trailing comment issue on enums
9d9affa
closes #1429
ec2b18f
Thanks for the report, the fix will be out in 0.30.6 shortly!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Trailing comma on enum values is formatted incorrectly if the value is followed by a comma. Exactly the same issue as #1354.
Input:
Output:
Expected behavior:
Tested with CSharpier.MSBuild 0.30.5
The text was updated successfully, but these errors were encountered: