keyword_quote_linter {lintr} | R Documentation |
Block unnecessary quoting in calls
Description
Any valid symbol can be used as a keyword argument to an R function call. Sometimes, it is necessary to quote (or backtick) an argument that is not an otherwise valid symbol (e.g. creating a vector whose names have spaces); besides this edge case, quoting should not be done.
Usage
keyword_quote_linter()
Details
The most common source of violation for this is creating named vectors, lists, or data.frame-alikes, but it can be observed in other calls as well.
Similar reasoning applies to extractions with $
or @
.
Tags
consistency, readability, style
See Also
linters for a complete list of linters available in lintr.
Examples
# will produce lints
lint(
text = 'data.frame("a" = 1)',
linters = keyword_quote_linter()
)
lint(
text = "data.frame(`a` = 1)",
linters = keyword_quote_linter()
)
lint(
text = 'my_list$"key"',
linters = keyword_quote_linter()
)
lint(
text = 's4obj@"key"',
linters = keyword_quote_linter()
)
# okay
lint(
text = "data.frame(`a b` = 1)",
linters = keyword_quote_linter()
)
lint(
text = "my_list$`a b`",
linters = keyword_quote_linter()
)
[Package lintr version 3.1.2 Index]