From 82f3435a0cb55750c8d4f51a7e749f01151ee974 Mon Sep 17 00:00:00 2001 From: Diego Rabatone Oliveira Date: Mon, 9 Oct 2023 11:32:37 -0300 Subject: [PATCH] [ci][linter] Disable object_usage_linter This is not ideal, but I'm disabling it for now because lintr is complaining about the usage of some functions (clean_string, compose_name and download_piggyback) with the "no visible global function definition for" warning. Here is a ref about this behaviour: https://stackoverflow.com/questions/51237029/why-does-lintr-say-warning-no-visible-binding-for-global-variable-cloaked --- .Rbuildignore | 1 + .lintr | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.Rbuildignore b/.Rbuildignore index 5555388..abf46a8 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -1,3 +1,4 @@ +.lintr .RData .Rhistory .parquet diff --git a/.lintr b/.lintr index 5576807..cc7a2c5 100644 --- a/.lintr +++ b/.lintr @@ -1,3 +1,4 @@ linters: linters_with_defaults( - line_length_linter(120) + line_length_linter(120), + object_usage_linter = NULL )