From 92f290dba418dd0b06504a363e1cf2a89c00461c Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Mon, 22 May 2023 18:36:22 -0500 Subject: [PATCH] Use non-deprecated function (#4169) Function with_defaults was deprecated in lintr version 3.0.0. Use linters_with_defaults or modify_defaults instead. --- TEMPLATES/.lintr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEMPLATES/.lintr b/TEMPLATES/.lintr index aac8e22e..4a776d90 100644 --- a/TEMPLATES/.lintr +++ b/TEMPLATES/.lintr @@ -1 +1 @@ -linters: with_defaults(object_usage_linter = NULL) +linters: linters_with_defaults(object_usage_linter = NULL)