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? 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
https://github.com/krlmlr/styler/blob/ef10c291034c05957c7a9f9d870db604f99f712a/R/rules-spacing.R#L189
I was wondering whether this rule is really doing what you expect because it turns
a <- ! !!x
Into
a <- !!! x
Which is not the same anymore.
@krlmlr probably we should only remove spaces if the token after is not !? Because we still want
!
a <- ! FALSE
to become
a <- !FALSE
The text was updated successfully, but these errors were encountered:
Agree that we need to check if the token after is also a bang.
Sorry, something went wrong.
lorenzwalthert
No branches or pull requests
https://github.com/krlmlr/styler/blob/ef10c291034c05957c7a9f9d870db604f99f712a/R/rules-spacing.R#L189
I was wondering whether this rule is really doing what you expect because it turns
Into
Which is not the same anymore.
@krlmlr probably we should only remove spaces if the token after is not
!
? Because we still wantto become
The text was updated successfully, but these errors were encountered: