generated from epiverse-trace/packagetemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ce4e31
commit c0b171d
Showing
1 changed file
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,38 @@ | ||
linters: linters_with_tags( | ||
tags = NULL, # include all linters | ||
linters: all_linters( | ||
packages = c("lintr", "etdev"), | ||
object_name_linter = NULL, | ||
undesirable_function_linter = NULL, | ||
implicit_integer_linter = NULL, | ||
extraction_operator_linter = NULL, | ||
todo_comment_linter = NULL, | ||
library_call_linter = NULL, | ||
undesirable_function_linter( | ||
modify_defaults( | ||
default_undesirable_functions, | ||
citEntry = "use the more modern bibentry() function", | ||
library = NULL # too many false positive in too many files | ||
) | ||
), | ||
function_argument_linter = NULL, | ||
# Use minimum R declared in DESCRIPTION or fall back to current R version | ||
indentation_linter = NULL, # unstable as of lintr 3.1.0 | ||
# Use minimum R declared in DESCRIPTION or fall back to current R version. | ||
# Install etdev package from https://github.com/epiverse-trace/etdev | ||
backport_linter(if (length(x <- etdev::extract_min_r_version())) x else getRversion()) | ||
) | ||
exclusions: list( | ||
"tests/testthat.R" = list( | ||
unused_import_linter = Inf | ||
), | ||
"tests" = list( | ||
undesirable_function_linter = Inf | ||
), | ||
"data-raw" = list( | ||
missing_package_linter = Inf, | ||
namespace_linter = Inf | ||
), | ||
# RcppExports.R is auto-generated and will not pass many linters. In | ||
# particular, it can create very long lines. | ||
"R/RcppExports.R", | ||
# R/stanmodels.R is auto-generated and will not pass many linters. In | ||
# particular, it uses `sapply()`. | ||
"R/stanmodels.R" | ||
) |