Skip to content

Commit

Permalink
update NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Aug 3, 2024
1 parent 05700fc commit 12147b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

## Notes

* All user-facing messages are now prepared using the `{cli}` package (#2418, @IndrajeetPatil). All messages have been reviewed and updated to be more informative and consistent.
* All user-facing messages (including progress bar) are now prepared using the `{cli}` package (#2418, @IndrajeetPatil). All messages have been reviewed and updated to be more informative and consistent.
* {lintr} now depends on R version 4.0.0. It already does so implicitly due to recursive upstream dependencies requiring this version; we've simply made that dependency explicit and up-front (#2569, @MichaelChirico).

# lintr 3.1.2
Expand Down
4 changes: 1 addition & 3 deletions R/lint.R
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,7 @@ lint_dir <- function(path = ".", ...,

lints <- flatten_lints(lapply(
cli::cli_progress_along(files, name = "Running linters"),
function(idx) {
lint(files[idx], ..., parse_settings = FALSE, exclusions = exclusions)
}
function(idx) lint(files[idx], ..., parse_settings = FALSE, exclusions = exclusions)
))

lints <- reorder_lints(lints)
Expand Down

0 comments on commit 12147b4

Please sign in to comment.