-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Further extensions to paste_linter #1108
Comments
I just tripped on paste0(x, collapse = ) Would love to see this implemented! |
Could you elaborate what you mean by "tripped on"? The behavior of |
Oh, actually, I tripped on Edit: and there is already a linter for this. Please disregard :) |
Your use case is already covered by
|
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 = )
The text was updated successfully, but these errors were encountered: