Describe the bug
When running devtools::check(document = FALSE) for a Golem application generated with the RStudio project wizzard the created package template issues a note :
❯ checking for hidden files and directories ... NOTE
Found the following hidden files and directories:
.here
Note is present also after sourcing dev/01_start.R due to missing .here in .Rbuildignore meta file.
To Reproduce
Run devtools::check(document = FALSE) after creating a skeleton package from the RStudio Golem wizard.
Expected behavior
Probably unwanted behaviour that R CMD check or the devtools::check() produces notes (except for the missing License probably).
session info
─ Session info ─────────────────────────────────────────────────────────────────────
setting value
version R version 4.2.2 Patched (2022-11-10 r83330)
os Linux Mint 20
system x86_64, linux-gnu
ui RStudio
language en_US
collate en_US.UTF-8
ctype en_US.UTF-8
tz Europe/Berlin
date 2023-02-22
rstudio 2022.07.2+576 Spotted Wakerobin (desktop)
pandoc NA
Additional context
Can be fixed by adding ^.here$ in inst/shinyexample/REMOVEME.Rbuildignore as per #994
Describe the bug
When running
devtools::check(document = FALSE)for a Golem application generated with the RStudio project wizzard the created package template issues a note :Note is present also after sourcing
dev/01_start.Rdue to missing.herein.Rbuildignoremeta file.To Reproduce
Run
devtools::check(document = FALSE)after creating a skeleton package from the RStudio Golem wizard.Expected behavior
Probably unwanted behaviour that
R CMD checkor thedevtools::check()produces notes (except for the missing License probably).session info
Additional context
Can be fixed by adding
^.here$ininst/shinyexample/REMOVEME.Rbuildignoreas per #994