tests/testthat/indention_operators/pipe_and_assignment_and_comment-out.R

a <- #
  b() %>%
  c() %>%
  d()

a <- #
  b() %>%
  c() %>%
  d()


a <-
  b() %>%
  c() %>%
  d()

a <- c %>%
  b() %>%
  c() %>%
  d()

a <-
  b() %>% #
  c() %>%
  d() # d
krlmlr/styler documentation built on Dec. 12, 2024, 8:36 a.m.