View source: R/trailing_whitespace_linter.R
trailing_whitespace_linter | R Documentation |
Check that there are no space characters at the end of source lines.
trailing_whitespace_linter(allow_empty_lines = FALSE, allow_in_strings = TRUE)
allow_empty_lines |
Suppress lints for lines that contain only whitespace. |
allow_in_strings |
Suppress lints for trailing whitespace in string constants. |
configurable, default, style
linters for a complete list of linters available in lintr.
# will produce lints
lint(
text = "x <- 1.2 ",
linters = trailing_whitespace_linter()
)
code_lines <- "a <- TRUE\n \nb <- FALSE"
writeLines(code_lines)
lint(
text = code_lines,
linters = trailing_whitespace_linter()
)
# okay
lint(
text = "x <- 1.2",
linters = trailing_whitespace_linter()
)
lint(
text = "x <- 1.2 # comment about this assignment",
linters = trailing_whitespace_linter()
)
code_lines <- "a <- TRUE\n \nb <- FALSE"
writeLines(code_lines)
lint(
text = code_lines,
linters = trailing_whitespace_linter(allow_empty_lines = TRUE)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.