Skip to content

Commit

Permalink
Write examples on fewer lines
Browse files Browse the repository at this point in the history
  • Loading branch information
salim-b committed Sep 6, 2023
1 parent 3638b4a commit 88734f3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions R/conjunct_test_linter.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@
#' )
#'
#' lint(
#' text = "dplyr::filter(
#' mtcars,
#' mpg > 20 & vs == 0
#' )",
#' text = "dplyr::filter(mtcars, mpg > 20 & vs == 0)",
#' linters = conjunct_test_linter()
#' )
#'
Expand All @@ -53,10 +50,7 @@
#' )
#'
#' lint(
#' text = "dplyr::filter(
#' mtcars,
#' mpg > 20 & vs == 0
#' )",
#' text = "dplyr::filter(mtcars, mpg > 20 & vs == 0)",
#' linters = conjunct_test_linter(allow_filter = TRUE)
#' )
#'
Expand Down

0 comments on commit 88734f3

Please sign in to comment.