From 95ff605878273121baac80416df6c9062c38eb49 Mon Sep 17 00:00:00 2001 From: Hugo Gruson Date: Tue, 5 Sep 2023 13:54:17 +0200 Subject: [PATCH] Exclude some linters from data-raw/ (#81) --- .lintr | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.lintr b/.lintr index e2ca0f34..0eca9d71 100644 --- a/.lintr +++ b/.lintr @@ -12,5 +12,9 @@ linters: linters_with_tags( backport_linter(if (length(x <- etdev::extract_min_r_version())) x else getRversion()) ) exclusions: list( - "tests/testthat.R" = list(unused_import_linter = Inf) + "tests/testthat.R" = list(unused_import_linter = Inf), + "data-raw" = list( + missing_package_linter = Inf, + namespace_linter = Inf + ) )