From db307d6e241d8c39f8d17190719de9facdc9ef36 Mon Sep 17 00:00:00 2001 From: Robert Devine <> Date: Thu, 18 Jan 2024 11:53:02 -0500 Subject: [PATCH] Local testing with lintr shows lint failures with unexpected characters around comments. GH lintr recommends removal of commented out code in the Details section of the GH Action. Pilot3 Team discussed the relevance of retaining the commented out code in the WG repository. Pilot3 Team Leads suggested using nolints for commented out code. Commented code lint disabled. --- .lintr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lintr b/.lintr index 11492b9..8e0c154 100644 --- a/.lintr +++ b/.lintr @@ -1,2 +1,2 @@ -linters: linters_with_defaults(line_length_linter(150), object_usage_linter=NULL, cyclocomp_linter(complexity_limit = 20)) +linters: linters_with_defaults(line_length_linter(150), object_usage_linter=NULL, cyclocomp_linter(complexity_limit = 20), commented_code_linter = NULL) exclusions: list("R/data.R", "renv")