Check that the line length of both comments and code is less than length
.
See also
linters for a complete list of linters available in lintr.
Examples
# will produce lints
lint(
text = strrep("x", 23L),
linters = line_length_linter(length = 20L)
)
#> ::warning file=<text>,line=1,col=21::file=<text>,line=1,col=21,[line_length_linter] Lines should not be more than 20 characters. This line is 23 characters.
# okay
lint(
text = strrep("x", 21L),
linters = line_length_linter(length = 40L)
)