Yacin Tmimi
Yacin Tmimi
Okay, This [Diff-Check](https://github.com/rust-lang/rustfmt/actions/runs/7661954853/job/20882324738) job shows the diffs I was expecting. @compiler-errors can when you have a chance, can you review the logs and double check that things are formatted here...
> @ytmimi do you think we should pull this in as part of the next release? I imagine this would need to be prefaced with a blog post and some...
> @ytmimi: Yes, that formatting looks correct. When there is a where clause present, there's always a line break, then `=` and the type, then a break, then the where...
Agreed that this one should get in no later than the 2024 edition, and really as soon as we can. Just brainstorming here, but maybe we can label it something...
Thanks for the report. You're best option is to write the `lazy_static!` macro with curly braces to begin with to avoid this issue. ```rust lazy_static! { static ref DYNAMODB_CLIENT: Option...
@calebcartwright I'm happy to help look into this 😁. Would we want to add a `Version Two` section to each configuration's documentation or did you have something else in mind...
Sure! I'll take a look through the codebase to look for all the places where we special case the formatting for `Version One` or `Version Two`. I like the idea...
@jmj0502 I like it! This is similar to the approach that I was going to take. I think maybe the only addition that would be nice is a reference to...
Came up with a little script to help us find all the `Version::One` and `Version::Two` uses throughout the codebase: ```bash regex="Version::One|Version::Two" for file in $(rg "$regex" --files-with-matches src); do echo...
Table of what I found above. Might be useful to track which examples we've already added. **Version Usage in src/visitor.rs** * [x] Version gate added in https://github.com/rust-lang/rustfmt/pull/3833 * Configs: `None`...