-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy path.lintr
More file actions
24 lines (24 loc) · 763 Bytes
/
.lintr
File metadata and controls
24 lines (24 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
linters: all_linters(
absolute_path_linter = NULL,
assignment_linter = NULL,
commented_code_linter = NULL,
cyclocomp_linter(25L),
if_not_else_linter(exceptions = character(0L)),
implicit_integer_linter = NULL,
library_call_linter = NULL,
line_length_linter(140L),
namespace_linter = NULL,
nonportable_path_linter = NULL,
object_name_linter = NULL,
object_length_linter(50L),
object_usage_linter = NULL,
pipe_consistency_linter("|>"),
string_boundary_linter = NULL,
strings_as_factors_linter = NULL, # since R > 4.0
undesirable_function_linter = NULL,
unnecessary_concatenation_linter(allow_single_expression = FALSE),
unused_import_linter = NULL
)
exclusions: list(
"data-raw"
)