-
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
extend available_linters(tags = )
, add linters_with_tags()
#1015
Conversation
Maybe adding a crossref from |
Not sure what is up with |
Sounds like the Locally irreproducible: f1 <- with_tags()[["vector_logic_linter"]]
f2 <- with_defaults()[["vector_logic_linter"]]
all.equal(f1, f2)
#> [1] TRUE
all.equal(deparse(f1), deparse(f2))
#> [1] TRUE EDIT: Found the problem. |
seems like a |
Nope. Added a skip nevertheless. |
# Conflicts: # R/linter_tags.R # man/linters.Rd
available_linters(tags = )
, add with_tags()
available_linters(tags = )
, add linters_with_tags()
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.
Getting closer, thanks!
PR fails seem to originate elsewhere. https://github.com/r-lib/lintr/runs/5749209064?check_suite_focus=true#step:6:177 EDIT: 🤦🏻 calling the internal function |
Fixes #980
I moved the
with_defaults()
test fromtest-settings.R
totest-with.R
and moved the implementation fromzzz.R
towith.R
.with_tags()
also allows us to test thatdefault_linters
is synchronized toavailable_linters(tags = "default")
so I did that.