Skip to content

Commit

Permalink
update lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
mllg committed Nov 30, 2023
1 parent 53c4ae4 commit 8eaa57c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .lintr
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ linters: with_defaults(
object_name_linter = object_name_linter(c("snake_case", "CamelCase")), # only allow snake case and camel case object names
cyclocomp_linter = NULL, # do not check function complexity
commented_code_linter = NULL, # allow code in comments
line_length_linter = line_length_linter(180)
line_length_linter = line_length_linter(180),
indentation_linter(indent = 2L, hanging_indent_style = "never")
)

0 comments on commit 8eaa57c

Please sign in to comment.