-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Minor formatting issues #103
Comments
schungx
changed the title
Incorrect formatting for default action in switch
Minor formatting issues
Oct 26, 2022
Since we're at it, here are a few more: fn add(a, b) {
a + b // comment
} Result: fn add(a, b) {
a + b
} The comment is gone. |
fn add(a, b) {
a + b; // a very very very looooooooonnnnnng long long long long long long comment
} is formatted to: fn add(a, b) {
a
+ b; // a very very very looooooooonnnnnng long long long long long long comment
} If a line comment is too long, the item gets moved to the second line, which looks strange. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
get formatted to:
The text was updated successfully, but these errors were encountered: