Skip to content

Commit

Permalink
update .lintr syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dankelley committed Feb 8, 2024
1 parent 04e6efe commit cc2671e
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions R/.lintr
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# vim: set ft=r:
# https://lintr.r-lib.org/reference/object_name_linter.html
linters:linters_with_defaults(
indentation_linter=NULL, # I could not make following work (indent=4L),
indentation_linter = NULL, # I could not make following work (indent=4L),
line_length_linter(150),
object_name_linter=NULL,
infix_spaces_linter=NULL,
brace_linter=NULL,
commented_code_linter=NULL,
object_length_linter(length=40L),
cyclocomp_linter(complexity_limit=400L))
object_name_linter = NULL,
infix_spaces_linter = NULL,
brace_linter = NULL,
commented_code_linter = NULL,
object_length_linter(length = 40L),
cyclocomp_linter(complexity_limit = 400L))

0 comments on commit cc2671e

Please sign in to comment.