pipe_consistency_linter {lintr} | R Documentation |
Pipe consistency linter
Description
Check that pipe operators are used consistently by file, or optionally specify one valid pipe operator.
Usage
pipe_consistency_linter(pipe = c("auto", "%>%", "|>"))
Arguments
pipe |
Which pipe operator is valid (either |
Tags
configurable, readability, style
See Also
linters for a complete list of linters available in lintr.
Examples
# will produce lints
lint(
text = "1:3 |> mean() %>% as.character()",
linters = pipe_consistency_linter()
)
lint(
text = "1:3 %>% mean() %>% as.character()",
linters = pipe_consistency_linter("|>")
)
# okay
lint(
text = "1:3 %>% mean() %>% as.character()",
linters = pipe_consistency_linter()
)
lint(
text = "1:3 |> mean() |> as.character()",
linters = pipe_consistency_linter()
)
[Package lintr version 3.1.2 Index]