Skip to content

Commit

Permalink
Check for new lints
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Nov 21, 2023
1 parent 325c48d commit a82ed6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
run: |
options(crayon.enabled = TRUE)
library(lintr)
lint_package(linters = linters_with_defaults(
lint_package(linters = linters_with_tags(
tags = NULL,
absolute_path_linter = NULL,
assignment_linter = NULL,
commented_code_linter = NULL,
Expand All @@ -59,8 +60,7 @@ jobs:
undesirable_function_linter = NULL,
undesirable_operator_linter = NULL,
unnecessary_concatenation_linter(allow_single_expression = FALSE),
unused_import_linter = NULL,
defaults = linters_with_tags(tags = NULL)
unused_import_linter = NULL
))
shell: Rscript {0}
env:
Expand Down
6 changes: 3 additions & 3 deletions .lintr
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
linters: linters_with_defaults(
linters: linters_with_tags(
tags = NULL,
absolute_path_linter = NULL,
assignment_linter = NULL,
commented_code_linter = NULL,
Expand All @@ -19,6 +20,5 @@ linters: linters_with_defaults(
undesirable_function_linter = NULL,
undesirable_operator_linter = NULL,
unnecessary_concatenation_linter(allow_single_expression = FALSE),
unused_import_linter = NULL,
defaults = linters_with_tags(tags = NULL)
unused_import_linter = NULL
)

0 comments on commit a82ed6e

Please sign in to comment.