implicit_integer_linter {lintr} | R Documentation |
Implicit integer linter
Description
Check that integers are explicitly typed using the form 1L
instead of 1
.
Usage
implicit_integer_linter(allow_colon = FALSE)
Arguments
allow_colon |
Logical, default |
Tags
best_practices, configurable, consistency, style
See Also
linters for a complete list of linters available in lintr.
Examples
# will produce lints
lint(
text = "x <- 1",
linters = implicit_integer_linter()
)
lint(
text = "x[2]",
linters = implicit_integer_linter()
)
lint(
text = "1:10",
linters = implicit_integer_linter()
)
# okay
lint(
text = "x <- 1.0",
linters = implicit_integer_linter()
)
lint(
text = "x <- 1L",
linters = implicit_integer_linter()
)
lint(
text = "x[2L]",
linters = implicit_integer_linter()
)
lint(
text = "1:10",
linters = implicit_integer_linter(allow_colon = TRUE)
)
[Package lintr version 3.1.2 Index]