-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lintr
35 lines (35 loc) · 1.19 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
linters: linters_with_tags(
tags = NULL,
assignment_linter = NULL,
brace_linter(allow_single_line = TRUE),
commented_code_linter = NULL,
consecutive_assertion_linter = NULL,
extraction_operator_linter = NULL,
implicit_assignment_linter = NULL,
implicit_integer_linter = NULL,
# TODO: remove indentation_linter = NULL when fixed
indentation_linter = NULL,
lengths_linter = NULL,
library_call_linter = NULL,
line_length_linter(100),
matrix_apply_linter = NULL,
missing_argument_linter = NULL,
missing_package_linter = NULL,
namespace_linter = NULL,
nonportable_path_linter = NULL,
object_name_linter = NULL,
object_usage_linter = NULL,
pipe_consistency_linter = NULL,
spaces_inside_linter = NULL,
T_and_F_symbol_linter = NULL,
paste_linter(allow_file_path = "always"),
todo_comment_linter = NULL,
undesirable_function_linter = NULL,
undesirable_operator_linter = NULL,
unnecessary_concatenation_linter = NULL,
unnecessary_lambda_linter = NULL,
unreachable_code_linter = NULL,
unused_import_linter(
except_packages = c("bit64", "data.table", "tidyverse", pkgload::pkg_name("."))
)
)