Skip to content

Commit

Permalink
Update lintr
Browse files Browse the repository at this point in the history
- remove deprecated linters: camel_case_linter, snake_case_linter --> replaced by (currently non-active) `object_name_linter` (see #338)
- activated `absolute_path_linter`: close #339
  • Loading branch information
dschlaep committed Oct 18, 2018
1 parent 5b4fa8a commit e10294c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .lintr
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@ linters: with_defaults(
closed_curly_linter(allow_single_line = TRUE),
# Turn off default linters for now:
object_name_linter = NULL,
camel_case_linter = NULL,
snake_case_linter = NULL,
#--- NON-DEFAULT LINTERS
# Not activated non-default linters:
#extraction_operator_linter,
#implicit_integer_linter,
#todo_comment_linter,
#absolute_path_linter(lax = TRUE),
# Activated non-default linters:
T_and_F_symbol_linter,
absolute_path_linter(lax = TRUE),
nonportable_path_linter(lax = TRUE),
semicolon_terminator_linter(semicolon = c("compound", "trailing")),
seq_linter,
Expand Down

0 comments on commit e10294c

Please sign in to comment.