-
Notifications
You must be signed in to change notification settings - Fork 8
/
.lintr
36 lines (36 loc) · 1.33 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
linters: lintr::all_linters(
#indentation_linter = lintr::indentation_linter(indent = 4L),
indentation_linter = NULL,
# line_length_linter = lintr::line_length_linter(80L),
line_length_linter = lintr::line_length_linter(200L),
trailing_blank_lines_linter = NULL,
trailing_whitespace_linter = NULL,
assignment_linter = NULL,
whitespace_linter = NULL,
brace_linter = NULL,
infix_spaces_linter = NULL,
paren_body_linter = NULL,
function_left_parentheses_linter = NULL,
spaces_left_parentheses_linter = NULL,
commas_linter = NULL,
quotes_linter = NULL,
spaces_inside_linter = NULL,
vector_logic_linter = NULL,
seq_linter = NULL,
object_length_linter = NULL,
semicolon_linter = NULL,
cyclocomp_linter = NULL,
object_usage_linter = NULL,
object_name_linter = NULL,
commented_code_linter = NULL,
extraction_operator_linter = NULL,
implicit_integer_linter = NULL,
nonportable_path_linter = NULL,
undesirable_function_linter = NULL,
numeric_leading_zero_linter = NULL,
todo_comment_linter = NULL,
fixed_regex_linter = NULL,
unnecessary_lambda_linter = NULL,
paste_linter = NULL
)
encoding: "UTF-8"