f <- withr::local_tempfile(lines = "a=1", fileext = "R")
lint(f) # linting a file
lint("a = 123\n") # linting inline-code
lint(text = "a = 123") # linting inline-code
if (FALSE) {
lint_dir()
lint_dir(
linters = list(semicolon_linter()),
exclusions = list(
"inst/doc/creating_linters.R" = 1,
"inst/example/bad.R",
"renv"
)
)
}
if (FALSE) {
lint_package()
lint_package(
linters = linters_with_defaults(semicolon_linter = semicolon_linter()),
exclusions = list("inst/doc/creating_linters.R" = 1, "inst/example/bad.R")
)
}
Run the code above in your browser using DataLab