Skip to content

Commit

Permalink
make name of transformer more similar to existing ones
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzwalthert committed Dec 2, 2024
1 parent 62c29dd commit 7dc83ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/rules-line-breaks.R
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ remove_empty_lines_after_opening_and_before_closing_braces <- function(pd) {
}


reduce_extra_blank_lines_between_top_level_exprs <- function(pd, allowed_blank_lines = 2L) {
set_line_breaks_between_top_level_exprs <- function(pd, allowed_blank_lines = 2L) {
pd$lag_newlines <- pmin(pd$lag_newlines, allowed_blank_lines + 1L)
pd
}
4 changes: 2 additions & 2 deletions R/style-guides.R
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ tidyverse_style <- function(scope = "tokens",
if (strict) remove_line_break_before_round_closing_after_curly,
remove_line_breaks_in_fun_dec =
if (strict) remove_line_breaks_in_fun_dec,
reduce_extra_blank_lines_between_top_level_exprs =
if (strict) reduce_extra_blank_lines_between_top_level_exprs,
set_line_breaks_between_top_level_exprs =
if (strict) set_line_breaks_between_top_level_exprs ,
style_line_break_around_curly = partial(
style_line_break_around_curly,
strict
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-transformers-drop.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ test_that("tidyverse transformers are correctly dropped", {

names_line_break <- c(
"remove_empty_lines_after_opening_and_before_closing_braces",
"reduce_extra_blank_lines_between_top_level_exprs",
"set_line_breaks_between_top_level_exprs ",
"set_line_break_around_comma_and_or",
"set_line_break_after_assignment",
"set_line_break_after_opening_if_call_is_multi_line",
Expand Down

0 comments on commit 7dc83ba

Please # to comment.