Skip to content

New for_loop_index_linter #1629

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

Merged
merged 3 commits into from
Oct 7, 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
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ Collate:
'extract.R'
'extraction_operator_linter.R'
'fixed_regex_linter.R'
'for_loop_index_linter.R'
'function_argument_linter.R'
'function_left_parentheses_linter.R'
'function_return_linter.R'
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export(expect_true_false_linter)
export(expect_type_linter)
export(extraction_operator_linter)
export(fixed_regex_linter)
export(for_loop_index_linter)
export(function_argument_linter)
export(function_left_parentheses_linter)
export(function_return_linter)
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
* `boolean_arithmetic_linter()` for identifying places where logical aggregations are more appropriate, e.g.
`length(which(x == y)) == 0` is the same as `!any(x == y)` or even `all(x != y)` (@MichaelChirico)

* `for_loop_index_linter()` to prevent overwriting local variables in a for loop declared like `for (x in x) { ... }` (@MichaelChirico)

# lintr 3.0.1

* Skip multi-byte tests in non UTF-8 locales (#1504)
Expand Down
61 changes: 61 additions & 0 deletions R/for_loop_index_linter.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#' Block usage of for loops directly overwriting the indexing variable
#'
#' `for (x in x)` is a poor choice of indexing variable. This overwrites
#' `x` in the calling scope and is confusing to read.
#'
#' @examples
#' # will produce lints
#' lint(
#' text = "for (x in x) { TRUE }",
#' linters = for_loop_index_linter()
#' )
#'
#' lint(
#' text = "for (x in foo(x, y)) { TRUE }",
#' linters = for_loop_index_linter()
#' )
#'
#' # okay
#' lint(
#' text = "for (xi in x) { TRUE }",
#' linters = for_loop_index_linter()
#' )
#'
#' lint(
#' text = "for (col in DF$col) { TRUE }",
#' linters = for_loop_index_linter()
#' )
#'
#' @evalRd rd_tags("for_loop_index_linter")
#' @seealso [linters] for a complete list of linters available in lintr.
#' @export
for_loop_index_linter <- function() {
xpath <- "
//forcond
/SYMBOL[text() =
following-sibling::expr
//SYMBOL[not(
preceding-sibling::OP-DOLLAR
or parent::expr[preceding-sibling::OP-LEFT-BRACKET]
)]
/text()
]
"

Linter(function(source_expression) {
if (!is_lint_level(source_expression, "expression")) {
return(list())
}

xml <- source_expression$xml_parsed_content

bad_expr <- xml2::xml_find_all(xml, xpath)

xml_nodes_to_lints(
bad_expr,
source_expression = source_expression,
lint_message = "Don't re-use any sequence symbols as the index symbol in a for loop.",
type = "warning"
)
})
}
1 change: 1 addition & 0 deletions inst/lintr/linters.csv
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ expect_true_false_linter,package_development best_practices readability
expect_type_linter,package_development best_practices
extraction_operator_linter,style best_practices
fixed_regex_linter,best_practices readability efficiency
for_loop_index_linter,best_practices readability robustness
function_argument_linter,style consistency best_practices
function_left_parentheses_linter,style readability default
function_return_linter,readability best_practices
Expand Down
1 change: 1 addition & 0 deletions man/best_practices_linters.Rd

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

42 changes: 42 additions & 0 deletions man/for_loop_index_linter.Rd

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

7 changes: 4 additions & 3 deletions man/linters.Rd

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

1 change: 1 addition & 0 deletions man/readability_linters.Rd

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

1 change: 1 addition & 0 deletions man/robustness_linters.Rd

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

18 changes: 18 additions & 0 deletions tests/testthat/test-for_loop_index_linter.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
test_that("for_loop_index_linter skips allowed usages", {
expect_lint("for (xi in x) {}", NULL, for_loop_index_linter())

# this is OK, so not every symbol is problematic
expect_lint("for (col in DF$col) {}", NULL, for_loop_index_linter())
expect_lint("for (col in DT[, col]) {}", NULL, for_loop_index_linter())
})

test_that("for_loop_index_linter blocks simple disallowed usages", {
linter <- for_loop_index_linter()
lint_msg <- "Don't re-use any sequence symbols as the index symbol in a for loop"

expect_lint("for (x in x) {}", lint_msg, linter)
# these also overwrite a variable in calling scope
expect_lint("for (x in foo(x)) {}", lint_msg, linter)
# arbitrary nesting
expect_lint("for (x in foo(bar(y, baz(2, x)))) {}", lint_msg, linter)
})