-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Line 33 in 3304988
| #' \code{location} should be a (list of) \code{\link{document_position}} or |
I couldn't tell from ?insertText whether 0 is valid or not. Of course I could test this with RStudio available, but I don't have it available at the moment, so it would be good to have this written out. The source code of rstudioapi::insertText() also eventually refers to a function inside an environment only available inside RStudio, so I couldn't check that either:
Line 156 in 3304988
| get(name, envir = asNamespace("rstudio"), ...) |
Context: We have a conflict in {lintr} of 0 being a valid column number for lint objects, apparently to support RStudio:
But this conflicts with SARIF format (r-lib/lintr#2550), which requires column>0. I'd like to know if the fix is to block 0 as a column number everywhere, or if we should just block it when producing SARIF output.
To answer this I tried to refer to the {rstudioapi} documentation, but to no avail.