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
Uncovered by #2191
lint(text = "obj$get(a =)", linters = missing_argument_linter())
The reason is that get is not a <SYMBOL_FUNCTION_CALL> in the AST -- it's a <SLOT>! (TIL)
get
<SYMBOL_FUNCTION_CALL>
<SLOT>
We might need to consider more broadly which //SYMBOL_FUNCTION_CALL linters also apply when the call is a //SLOT.
//SYMBOL_FUNCTION_CALL
//SLOT
We do so in one place so far:
lintr/R/keyword_quote_linter.R
Line 84 in c315baf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uncovered by #2191
The reason is that
get
is not a<SYMBOL_FUNCTION_CALL>
in the AST -- it's a<SLOT>
! (TIL)We might need to consider more broadly which
//SYMBOL_FUNCTION_CALL
linters also apply when the call is a//SLOT
.We do so in one place so far:
lintr/R/keyword_quote_linter.R
Line 84 in c315baf
The text was updated successfully, but these errors were encountered: