Lorenz Walthert
Lorenz Walthert
Also, please note that before submitting new PRs, discussion in an issue is encouraged as per our `CONTRIBUTING.md`.
Yes, please open one and see what happens. I would like to offload the task of updating the schema upstream as well as how to deal with an evolving schema....
Glad to hear that you got this merged upstream. ~Yes, please open a new PR~. Please force push your changes to this PR.
Good idea. So are you not source tracking `man/`? Was not aware of this functionality in {roxygen2}. I guess it would be implemented with `language: script` as the `language: r`...
You don’t need that function probably, just create a hook that has a file filter for this file. And if the file matches, run automate. It would be a local...
You can also always run it yes, if you specify that in your config file, see the [docs](https://pre-commit.com/#config-always_run). Depends on how long this takes, it’s a bit annoying for the...
@yitao-li ?
Hi @rjake, thanks for getting back to me so quickly. In the mean time, my styler submission made it to CRAN, so no immediate stress or debugging efforts required anymore...
If you use `styler::style_text()`, you don’t need `@importFrom styler style_text`. The latter you only need if you use `style_text()`. So just drop that roxygen comment.
Indeed, thanks. For everyone after me: ``` r library(ggplot2) library(ggspatial) load_longlake_data() ggplot() + shadow_spatial(sf::st_bbox(longlake_depthdf[1, ])) + annotation_spatial(longlake_depthdf, aes(col = DEPTH_M)) # previously layer_spatial() here ```  Created on 2020-01-25 by...