absolute_path_linter {lintr} | R Documentation |
Absolute path linter
Description
Check that no absolute paths are used (e.g. "/var", "C:\System", "~/docs").
Usage
absolute_path_linter(lax = TRUE)
Arguments
lax |
Less stringent linting, leading to fewer false positives.
If
|
Tags
best_practices, configurable, robustness
See Also
-
linters for a complete list of linters available in lintr.
Examples
# Following examples use raw character constant syntax introduced in R 4.0.
# will produce lints
lint(
text = 'R"--[/blah/file.txt]--"',
linters = absolute_path_linter()
)
# okay
lint(
text = 'R"(./blah)"',
linters = absolute_path_linter()
)
[Package lintr version 3.1.2 Index]