-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
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
unnecessary_placeholder_linter()
covers a few other ops
#1681
Conversation
@@ -33,7 +33,7 @@ | |||
unnecessary_placeholder_linter <- function() { | |||
# TODO(michaelchirico): handle R4.2.0 native placeholder _ as well | |||
xpath <- " | |||
//SPECIAL[text() = '%>%'] | |||
//SPECIAL[text() = '%>%' or text() = '%T>%' or text() = '%<>%'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note which are covered in the documentation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. Done.
We can revise this once the native pipe is also supported.
Codecov Report
@@ Coverage Diff @@
## main #1681 +/- ##
=======================================
Coverage 98.71% 98.71%
=======================================
Files 104 104
Lines 4498 4498
=======================================
Hits 4440 4440
Misses 58 58
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Part of #1657