Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add assignment_as_infix = TRUE to indentation_linter() #1812

Merged
merged 12 commits into from
Dec 31, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 56 additions & 13 deletions R/indentation_linter.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,27 @@
#' # body
#' }
#' ```
#' @param assignment_as_infix Treat `<-` as a regular (i.e. left-associative) infix operator?
#' This means, that infix operators on the right hand side of an assignment do not trigger a second level of
#' indentation:
#' ```r
#' # complies to any style
#' variable <- a %+%
#' b %+%
#' c
#'
#' # complies to assignment_as_infix = TRUE
#' variable <-
#' a %+%
#' b %+%
#' c
#'
#' # complies to assignment_as_infix = FALSE
#' variable <-
#' a %+%
#' b %+%
#' c
#' ```
#'
#' @examples
#' # will produce lints
Expand Down Expand Up @@ -97,7 +118,8 @@
#' - <https://style.tidyverse.org/functions.html#long-lines-1>
#'
#' @export
indentation_linter <- function(indent = 2L, hanging_indent_style = c("tidy", "always", "never")) {
indentation_linter <- function(indent = 2L, hanging_indent_style = c("tidy", "always", "never"),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: i usually prefer each argument with defaults on its own line once >1 line is used, WDYT? not sure it's a stated rule, but it's similar to the long lines rule for calls.

assignment_as_infix = TRUE) {
paren_tokens_left <- c("OP-LEFT-BRACE", "OP-LEFT-PAREN", "OP-LEFT-BRACKET", "LBB")
paren_tokens_right <- c("OP-RIGHT-BRACE", "OP-RIGHT-PAREN", "OP-RIGHT-BRACKET", "OP-RIGHT-BRACKET")
infix_tokens <- setdiff(infix_metadata$xml_tag, c("OP-LEFT-BRACE", "OP-COMMA", paren_tokens_left))
Expand All @@ -118,6 +140,21 @@ indentation_linter <- function(indent = 2L, hanging_indent_style = c("tidy", "al
}
}

if (isTRUE(assignment_as_infix)) {
infix_condition <- glue::glue("
and not(
ancestor::expr[
preceding-sibling::LEFT_ASSIGN[{xp_last_on_line}] or expr[SYMBOL_FUNCTION_CALL]
AshesITR marked this conversation as resolved.
Show resolved Hide resolved
][1][
preceding-sibling::LEFT_ASSIGN[{xp_last_on_line}]
]
)
")
# suppress only infix operators that are not inside of a function call
} else {
infix_condition <- ""
}

xp_block_ends <- paste0(
"number(",
paste(
Expand All @@ -141,7 +178,7 @@ indentation_linter <- function(indent = 2L, hanging_indent_style = c("tidy", "al
@line2 > @line1 and
({xp_or(paste0('descendant::', paren_tokens_left, '[', xp_last_on_line, ']'))})
]/@line1)]"),
glue::glue("//{infix_tokens}[{xp_last_on_line}]"),
glue::glue("//{infix_tokens}[{xp_last_on_line}{infix_condition}]"),
glue::glue("//{no_paren_keywords}[{xp_last_on_line}]"),
glue::glue("//{keyword_tokens}/following-sibling::OP-RIGHT-PAREN[
{xp_last_on_line} and
Expand Down Expand Up @@ -186,17 +223,13 @@ indentation_linter <- function(indent = 2L, hanging_indent_style = c("tidy", "al
change_end <- xml2::xml_find_num(change, xp_block_ends)
if (isTRUE(change_begin <= change_end)) {
to_indent <- seq(from = change_begin, to = change_end)
if (change_type == "hanging") {
expected_indent_levels[to_indent] <- as.integer(xml2::xml_attr(change, "col2"))
is_hanging[to_indent] <- TRUE
} else { # block or double
if (change_type == "double") {
expected_indent_levels[to_indent] <- expected_indent_levels[to_indent] + 2L * indent
} else {
expected_indent_levels[to_indent] <- expected_indent_levels[to_indent] + indent
}
is_hanging[to_indent] <- FALSE
}
expected_indent_levels[to_indent] <- find_new_indent(
expected_indent_levels[to_indent],
change_type,
indent,
as.integer(xml2::xml_attr(change, "col2"))
AshesITR marked this conversation as resolved.
Show resolved Hide resolved
)
is_hanging[to_indent] <- change_type == "hanging"
}
}

Expand Down Expand Up @@ -261,6 +294,16 @@ indentation_linter <- function(indent = 2L, hanging_indent_style = c("tidy", "al
})
}

find_new_indent <- function(current_indent, change_type, indent, hanging_indent) {
AshesITR marked this conversation as resolved.
Show resolved Hide resolved
if (change_type == "hanging") {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: maybe a switch() is more appropriate? change_type feels pretty enum-like

hanging_indent
} else if (change_type == "double") {
current_indent + 2L * indent
} else {
current_indent + indent
}
}

build_indentation_style_tidy <- function() {
paren_tokens_left <- c("OP-LEFT-BRACE", "OP-LEFT-PAREN", "OP-LEFT-BRACKET", "LBB")
paren_tokens_right <- c("OP-RIGHT-BRACE", "OP-RIGHT-PAREN", "OP-RIGHT-BRACKET", "OP-RIGHT-BRACKET")
Expand Down
25 changes: 24 additions & 1 deletion man/indentation_linter.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions tests/testthat/test-indentation_linter.R
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,49 @@ test_that("hanging_indent_stlye works", {
expect_lint(code_hanging_same_line, "Indent", non_hanging_linter)
})

test_that("assignment_as_infix works", {
code_infix <- trim_some("
ok_code <-
var1 +
f(
var2 +
var3
) +
var4
")

code_infix_2 <- trim_some("
lapply(x,
function(e) {
temp_var <-
e +
42
}
)
")

code_no_infix <- trim_some("
ok_code <-
var1 +
f(
var2 +
var3
) +
var4
")

tidy_linter <- indentation_linter()
no_infix_linter <- indentation_linter(assignment_as_infix = FALSE)

expect_lint(code_infix, NULL, tidy_linter)
expect_lint(code_infix_2, NULL, tidy_linter)
expect_lint(code_no_infix, rex::rex("Indentation should be 2 spaces but is 4 spaces."), tidy_linter)

expect_lint(code_infix, rex::rex("Indentation should be 4 spaces but is 2 spaces."), no_infix_linter)
expect_lint(code_infix_2, rex::rex("Indentation should be 8 spaces but is 6 spaces."), no_infix_linter)
expect_lint(code_no_infix, NULL, no_infix_linter)
})

test_that("consecutive same-level lints are suppressed", {
bad_code <- trim_some("
ok_code <- 42
Expand Down