generated from jameel-institute/ji.rpkg.template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.lintr
31 lines (31 loc) · 970 Bytes
/
.lintr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
linters: all_linters(
indentation_linter = NULL, # unstable as of lintr 3.1.0
implicit_integer_linter = NULL, # turn off due to multiple integerish values used
duplicate_argument_linter = NULL, # due to cli_bullets
object_name_linter = NULL, # due to S3 methods
object_length_linter = NULL # due to length of method names
)
exclusions: list(
"R/get_vimc_climate.R" = list(
object_overwrite_linter = Inf
),
"tests/testthat.R" = list(
unused_import_linter = Inf,
undesirable_function_linter = Inf
),
"tests" = list(
undesirable_function_linter = Inf
),
"data-raw" = list(
missing_package_linter = Inf,
namespace_linter = Inf
),
"vignettes" = list(
undesirable_function_linter = Inf
),
# do no attempt to lint auto-generated files
"R/RcppExports.R",
"R/cpp11.R",
"R/import-standalone-utils-assert.R",
"R/import-standalone-utils-assert-path.R"
)