Skip to content
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

Suggest to remove unneeded trailing comma #13965

Open
nyurik opened this issue Jan 9, 2025 · 5 comments · May be fixed by #14196
Open

Suggest to remove unneeded trailing comma #13965

nyurik opened this issue Jan 9, 2025 · 5 comments · May be fixed by #14196
Assignees
Labels
A-lint Area: New lints

Comments

@nyurik
Copy link
Contributor

nyurik commented Jan 9, 2025

What it does

In most cases, a trailing comma before parentheses is not needed, especially in a macro invocation. Yet, I suspect this cannot be fully automated by rustfmt because there are some edge cases which do require that comma to be present. I think there should be a lint offering to remove it.

Advantage

  • Cleaner, easier to read code

Drawbacks

extremely rare edge cases might be tricky to detect

Example

debug!("Foo={}", 1,);

Could be written as:

debug!("Foo={}", 1);
@nyurik nyurik added the A-lint Area: New lints label Jan 9, 2025
@sivchari
Copy link

sivchari commented Jan 9, 2025

@rustbot claim

@sivchari
Copy link

sivchari commented Jan 9, 2025

The syntax of calling function is formatted by rustfmt. Presumably, it's good to check only macro calling.

@nyurik
Copy link
Contributor Author

nyurik commented Jan 9, 2025

I agree - this probably should only apply to the macros. In the help text, you may also want to add a comment that a macro declaration should have $(,)? at the end to allow optional trailing comma - which would also educate users how to write macro_rules

@samueltardieu
Copy link
Contributor

If implemented, I think it should be a restriction lint (which is "allow by default"), because some people prefer having a trailing comma when macro calls (e.g., vec![], or other initializers) span multiple lines.

@nyurik
Copy link
Contributor Author

nyurik commented Jan 10, 2025

I think this lint should only apply to a single line macros

@sivchari sivchari linked a pull request Feb 11, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lint Area: New lints
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants