We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
According to cf. https://style.tidyverse.org/syntax.html?q=empty%20curly%20braces#indenting, following
library(styler) style_text( "while (waiting_for_something()) { }" ) #> while (waiting_for_something()) { } style_text( "while (waiting_for_something()) { }" ) #> while (waiting_for_something()) { #> #> }
Created on 2024-10-02 with reprex v2.1.1|
should instead be styled to:
while (waiting_for_something()) {}
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
According to cf. https://style.tidyverse.org/syntax.html?q=empty%20curly%20braces#indenting, following
Created on 2024-10-02 with reprex v2.1.1|
should instead be styled to:
while (waiting_for_something()) {}
The text was updated successfully, but these errors were encountered: