From a755980b21cdcc0868f5e186ed9e0e7e8b2afdd8 Mon Sep 17 00:00:00 2001 From: gisler Date: Tue, 26 Dec 2023 18:44:04 +0100 Subject: [PATCH] ci: update lintr --- .lintr | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.lintr b/.lintr index ea4e0b8..4eb27e5 100644 --- a/.lintr +++ b/.lintr @@ -1,12 +1,16 @@ -linters: linters_with_defaults( - object_usage_linter = NULL, +linters: all_linters( commas_linter = NULL, cyclocomp_linter = NULL, + extraction_operator_linter = NULL, + implicit_integer_linter = NULL, + indentation_linter = NULL, line_length_linter = NULL, + nonportable_path_linter = NULL, object_name_linter = NULL, spaces_inside_linter = NULL, todo_comment_linter = todo_comment_linter( todo = c("todo", "to-do", "to do", "fixme", "fix-me", "fix me") - ) + ), + undesirable_function_linter = NULL ) exclusions: list("R/RcppExports.R")