Skip to content

Commit

Permalink
[ci][linter] Disable object_usage_linter
Browse files Browse the repository at this point in the history
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
  • Loading branch information
diraol committed Oct 9, 2023
1 parent 385edb4 commit 82f3435
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.lintr
.RData
.Rhistory
.parquet
Expand Down
3 changes: 2 additions & 1 deletion .lintr
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
linters: linters_with_defaults(
line_length_linter(120)
line_length_linter(120),
object_usage_linter = NULL
)

0 comments on commit 82f3435

Please sign in to comment.