forked from ycphs/openxlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.lintr
18 lines (18 loc) · 842 Bytes
/
.lintr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
linters: with_defaults(
line_length_linter = NULL, # we have many long lines
cyclocomp_linter = NULL, #
commented_code_linter = NULL, #
snake_case_linter = NULL, # we prefered camel case
trailing_whitespace_linter = NULL, # have a few cases
commas_linter = NULL, #
paren_brace_linter = NULL, #
object_name_linter = NULL, # more camel case
infix_spaces_linter = NULL, #
function_left_parentheses_linter = NULL, #
spaces_inside_linter = NULL, #
spaces_left_parentheses_linter = NULL, #
no_tab_linter = NULL, #
single_quotes_linter = NULL, #
object_length_linter = NULL, #
assignment_linter = NULL # just one case
)