# will produce lints
lint(
  text = "if (TRUE & FALSE) 1",
  linters = vector_logic_linter()
)
lint(
  text = "if (TRUE && (TRUE | FALSE)) 4",
  linters = vector_logic_linter()
)
lint(
  text = "filter(x, A && B)",
  linters = vector_logic_linter()
)
# okay
lint(
  text = "if (TRUE && FALSE) 1",
  linters = vector_logic_linter()
)
lint(
  text = "if (TRUE && (TRUE || FALSE)) 4",
  linters = vector_logic_linter()
)
lint(
  text = "filter(x, A & B)",
  linters = vector_logic_linter()
)
Run the code above in your browser using DataLab