-
Notifications
You must be signed in to change notification settings - Fork 185
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
namespace_linter()
false positives with re-exported functions
#1752
Comments
Seems more related to |
For a reference, this is how |
Sorry for not being clear. I was referring to the bug. |
Looks like library(lintr)
lint(
text = "magrittr::`%>%`",
linters = namespace_linter()
)
#> <text>:1:11: warning: [namespace_linter] '`%>%`' is not exported from {magrittr}.
#> magrittr::`%>%`
#> ^~~~~
lint(
text = "magrittr::'%>%'",
linters = namespace_linter()
) Created on 2022-10-24 with reprex v2.0.2 |
Created on 2022-10-23 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: