Closed
Description
There is no way to make this piece of code lint-free without rewriting:
letters %>%
{ # - open_curly_linter
tibble(
lo = .,
hi = toupper(.)
)
} %>%
mutate(row_id = row_number())
letters %>% { # - pipe_continuation_linter
tibble(
lo = .,
hi = toupper(.)
)
} %>%
mutate(row_id = row_number())
Metadata
Metadata
Assignees
Labels
No labels