From 95dba5c16e26496fa5b02767bfe454b68b57b2bf Mon Sep 17 00:00:00 2001 From: Hugo Gruson Date: Sun, 10 Dec 2023 15:23:20 +0100 Subject: [PATCH] Add more exceptions for implicit_assignment_linter --- .lintr | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.lintr b/.lintr index 8fef58c5..916fbfb5 100644 --- a/.lintr +++ b/.lintr @@ -10,5 +10,9 @@ linters: linters_with_tags( object_usage_linter = NULL, commented_code_linter = NULL, indentation_linter = NULL, - cyclocomp_linter = NULL + cyclocomp_linter = NULL, + implicit_assignment_linter( + except = c("bquote", "expression", "expr", "quo", "quos", "quote", + "expect_message", "expect_warning") + ) )