Branched off from #998 -- creating this issue to cover the remaining `paste`-related lints mentioned there that aren't making the 3.0.0 cut - [x] #884 `PasteFilePathLinter`: `paste(sep = "/")` ➡️ `file.path()` - [x] #884 `PasteStrrepLinter`: `paste(rep(), collapse="")` ➡️ `strrep()` #1652 - [ ] `paste0(x, collapse = )` ➡️ `paste(x, collapse = )`
Branched off from #998 -- creating this issue to cover the remaining
paste-related lints mentioned there that aren't making the 3.0.0 cutPasteFilePathLinter:paste(sep = "/")➡️file.path()PasteStrrepLinter:paste(rep(), collapse="")➡️strrep()extend paste_linter() for strrep() equivalents #1652paste0(x, collapse = )➡️paste(x, collapse = )