Skip to content

Commit

Permalink
update lintr config for lintr >= 2
Browse files Browse the repository at this point in the history
The package was set to use CRAN {lintr} (ie, >=v2)

`snake_case_linter` and `camel_case_linter` were NULL-ed out in the
.lintr config.

But, these linters were removed from lintr's default-linter set prior to
lintr v2 (so NULLing them has no effect).
  • Loading branch information
russHyde committed Feb 4, 2021
1 parent 2882254 commit 98b23d1
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
@@ -1,7 +1,5 @@
linters: with_defaults(
camel_case_linter = NULL,
cyclocomp_linter = NULL,
object_length_linter = NULL,
object_name_linter = NULL,
object_usage_linter = NULL,
snake_case_linter = NULL)
object_usage_linter = NULL)

0 comments on commit 98b23d1

Please sign in to comment.