You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I again apologize for how many issues I have opened at once. I just started using rustfmt on my project and have noticed a lot of things about brace_style, as an avid "AlwaysNextLine"-er.
async blocks don't adhere to brace_style. For example, the code snippet below is shown when running rustfmt:
async{// stuff}
It should look like this:
async{// stuff}
The text was updated successfully, but these errors were encountered:
I again apologize for how many issues I have opened at once. I just started using
rustfmt
on my project and have noticed a lot of things aboutbrace_style
, as an avid "AlwaysNextLine"-er.async
blocks don't adhere tobrace_style
. For example, the code snippet below is shown when runningrustfmt
:It should look like this:
The text was updated successfully, but these errors were encountered: