forked from hbc/bcbioRNASeq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.lintr
31 lines (31 loc) · 888 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: with_defaults(
absolute_path_linter,
assignment_linter,
closed_curly_linter,
commas_linter,
extraction_operator_linter,
implicit_integer_linter,
infix_spaces_linter,
line_length_linter(80),
nonportable_path_linter,
no_tab_linter,
object_length_linter(40),
object_name_linter("lowerCamelCase"),
object_usage_linter = NULL,
open_curly_linter,
semicolon_terminator_linter,
pipe_continuation_linter,
single_quotes_linter,
spaces_inside_linter,
spaces_left_parentheses_linter,
todo_comment_linter(),
trailing_blank_lines_linter,
trailing_whitespace_linter,
T_and_F_symbol_linter,
undesirable_function_linter,
undesirable_operator_linter,
unneeded_concatenation_linter,
default = default_linters)
exclude: "# nolint"
exclude_start: "# nolint start"
exclude_end: "# nolint end"