-
Notifications
You must be signed in to change notification settings - Fork 187
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
Allow to opt out of linting filter()
in conjunct_test_linter
#2110
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2110 +/- ##
=======================================
Coverage 99.65% 99.65%
=======================================
Files 118 118
Lines 5208 5210 +2
=======================================
+ Hits 5190 5192 +2
Misses 18 18
|
Thanks! Please also
|
R/conjunct_test_linter.R
Outdated
@@ -32,6 +33,14 @@ | |||
#' linters = conjunct_test_linter(allow_named_stopifnot = FALSE) | |||
#' ) | |||
#' | |||
#' lint( | |||
#' text = "dplyr::filter( |
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.
sorry for the toil -- would you mind putting this into an inline expression? it'll be more consistent with examples from other linters. Typically when examples run to >1 line we write the examples little differently (search for writeLines()), but I don't think it's necessary in this case.
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.
Like this? 88734f3
Fixes #2108.