repeat_linter {lintr} | R Documentation |
Check that while (TRUE)
is not used for infinite loops.
repeat_linter()
linters for a complete list of linters available in lintr.
# will produce lints
lint(
text = "while (TRUE) { }",
linters = repeat_linter()
)
# okay
lint(
text = "repeat { }",
linters = repeat_linter()
)