`dplyr::mutate()` allows sequential updates to variables, e.g. ``` x %>% dplyr::mutate( col = gsub("t", "", col), col = gsub("\\s+$", "xxx", col) ) ``` but `duplicate_argument_linter()` sees `col` used twice and throws.