function_left_parentheses_linter {lintr} | R Documentation |
Function left parentheses linter
Description
Check that all left parentheses in a function call do not have spaces before them
(e.g. mean (1:3)
). Although this is syntactically valid, it makes the code
difficult to read.
Usage
function_left_parentheses_linter()
Details
Exceptions are made for control flow functions (if
, for
, etc.).
Tags
See Also
-
linters for a complete list of linters available in lintr.
Examples
# will produce lints
lint(
text = "mean (x)",
linters = function_left_parentheses_linter()
)
lint(
text = "stats::sd(c (x, y, z))",
linters = function_left_parentheses_linter()
)
# okay
lint(
text = "mean(x)",
linters = function_left_parentheses_linter()
)
lint(
text = "stats::sd(c(x, y, z))",
linters = function_left_parentheses_linter()
)
lint(
text = "foo <- function(x) (x + 1)",
linters = function_left_parentheses_linter()
)
[Package lintr version 3.1.2 Index]