Add support for leading comma
Open
Nobody has claimed this yet.
C-feature-request
P-low
- Dominant language
- Rust
- Stars
- 7k
- Forks
- 1.1k
- Avg merge
- 2d 13h
- Merged PRs (30d)
- 24
Description
Not everyone likes to use trailing comma. Most of the time users' eyes behavior would focus more on the left-hand side of the monitorsand therefore it is very easy to spot on whether it is leading comma or other rust operators, such as =>, +, ., etc.
match io::stdin().read_line(&mut buffer_input) {
Ok(buffer_input_size)
=> println!(
"Hello, {}! Your name size is {}."
// call .trim() because .read_line also read `\n` character at the end of input
, buffer_input.trim()
, buffer_input_size
)
, Err(error) => println!("[Error] Cannot read input. Reason: {}.", error)
};
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the leading-comma example in this issue and review rustfmt's existing comma-formatting behavior; no source file, test, or entry point is named. Done means rustfmt has a defined and consistently supported leading-comma style matching the requested example.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100