-
Notifications
You must be signed in to change notification settings - Fork 18
/
.lintr
43 lines (43 loc) · 1.25 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
linters: linters_with_defaults(
absolute_path_linter(lax = TRUE),
any_duplicated_linter(),
any_is_na_linter(),
backport_linter(),
class_equals_linter(),
commented_code_linter = NULL,
condition_message_linter(),
consecutive_stopifnot_linter(),
cyclocomp_linter(50),
duplicate_argument_linter(),
fixed_regex_linter(),
ifelse_censor_linter(),
inner_combine_linter(),
line_length_linter(150),
literal_coercion_linter(),
missing_argument_linter(),
missing_package_linter(),
namespace_linter(),
nested_ifelse_linter(),
nonportable_path_linter(lax = TRUE),
numeric_leading_zero_linter(),
object_length_linter(30),
object_usage_linter = NULL,
outer_negation_linter(),
package_hooks_linter(),
paste_linter(),
pipe_call_linter(),
redundant_ifelse_linter(),
regex_subset_linter(),
semicolon_linter(allow_compound = TRUE),
sprintf_linter(),
string_boundary_linter(),
strings_as_factors_linter(),
system_file_linter(),
undesirable_function_linter(all_undesirable_functions),
undesirable_operator_linter(all_undesirable_operators),
unneeded_concatenation_linter(),
unreachable_code_linter(),
unused_import_linter(),
yoda_test_linter()
)
exclusions: list("dev", "tests", "renv", "R/RcppExports.R", "README.Rmd")