There is no way to make this piece of code lint-free without rewriting: ```r 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()) ```