Skip to content

Extend vector_logic_linter() for usage like filter(x, A && B) #2143

Extend vector_logic_linter() for usage like filter(x, A && B)

Extend vector_logic_linter() for usage like filter(x, A && B) #2143

Triggered via pull request December 15, 2023 09:52
@AshesITRAshesITR
synchronize #2435
vl-filter
Status Success
Total duration 1m 36s
Artifacts

check-all-examples.yaml

on: pull_request
check-all-examples
1m 27s
check-all-examples
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
check-all-examples: <text>#L1
file=<text>,line=1,col=2,[absolute_path_linter] Do not use absolute paths.
check-all-examples: <text>#L1
file=<text>,line=1,col=1,[any_duplicated_linter] anyDuplicated(x, ...) > 0 is better than any(duplicated(x), ...).
check-all-examples: <text>#L1
file=<text>,line=1,col=1,[any_duplicated_linter] anyDuplicated(x) == 0L is better than length(unique(x)) == length(x).
check-all-examples: <text>#L1
file=<text>,line=1,col=1,[any_is_na_linter] anyNA(x) is better than any(is.na(x)).
check-all-examples: <text>#L1
file=<text>,line=1,col=1,[any_is_na_linter] anyNA(x) is better than any(is.na(x)).
check-all-examples: <text>#L1
file=<text>,line=1,col=3,[assignment_linter] Use <-, not =, for assignment.
check-all-examples: <text>#L1
file=<text>,line=1,col=3,[assignment_linter] Use <-, not ->, for assignment.
check-all-examples: <text>#L2
file=<text>,line=2,col=3,[assignment_linter] Replace ->> by assigning to a specific environment (with assign() or <-) to avoid hard-to-predict behavior.
check-all-examples: <text>#L1
file=<text>,line=1,col=3,[assignment_linter] Avoid the assignment pipe %<>%; prefer using <- and %>% separately.
check-all-examples: <text>#L1
file=<text>,line=1,col=3,[assignment_linter] Replace <<- by assigning to a specific environment (with assign() or <-) to avoid hard-to-predict behavior.