View source: R/keyword_quote_linter.R
keyword_quote_linter | R Documentation |
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.
keyword_quote_linter()
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 @
.
consistency, readability, style
linters for a complete list of linters available in lintr.
# 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()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.