View source: R/repeat_linter.R
repeat_linter | R Documentation |
Check that while (TRUE)
is not used for infinite loops.
repeat_linter()
readability, style
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()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.