Jim Hester
Jim Hester
Thanks for working on the PR. I think if we were going to add markdown support we should use the rmarkdown package rather than the markdown package. Please remove the...
The installation timings are medians of the CRAN check results for the packages, they are pulled from the CRAN check results. The error you are getting looks to me like...
I will work on this in the next few days, but wanted to have an issue to track it.
So callr has https://github.com/r-lib/callr/blob/2dffbbe502c7aba84fc0785add4a1e588f88b03c/R/rcmd.R#L106 which basically always sets `NOT_CRAN=true` unless it is already set, which I believe is causing revdepcheck to always have `NOT_CRAN=true` set when running revdepchecks. I am...
I think not touching it is probably best. In the meantime I can successfully work around it with ```r withr::with_envvar(c(NOT_CRAN="false"), revdepcheck::revdep_check()) ```
FWIW I think this is a good suggestion. Another idea would be to have the fallback in the home directory, possibly prefixed with `.`. I think we could support all...
You could just use a custom transformer with glue to collect the results of the parsing, e.g. ``` r res
FWIW running [lintr](https://github.com/jimhester/lintr) on the project with `lintr::lint_package(linters=with_defaults(camel_case_linter = NULL))` yields the following lints. [R/client.R:88:12:](https://github.com/googlegenomics/api-client-r/blob/4f209d6f7f047a8151bfd524d5669fa43961e9d8/R/client.R#L88) _style:_ **Use
@jeroen is the main holdup for this PR the dplyr / data.table dependencies? If so I think we could just write a basic concatenation function in C that will give...
Just a small update, I have begun work on a tree sitter parser for R (https://github.com/jimhester/tree-sitter-r) Only spent a few days on it, but it is already fairly functional, so...