我怎样才能阻止 r devtools::check() 注意到 .DS_Store
how can I stop r devtools::check() from noting .DS_Store
每次我 运行 devtools::check()
在我的包裹上它都会抛出一条关于:
> checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
‘.DS_Store’
我的 .Rbuildignore 包括:
^.*\.Rproj$
^\.Rproj\.user$
^\.DS_Store$
如何让 check()
忽略该文件?
我重新启动了 RStudio,它自行修复了。我不知道为什么在保存文件后它没有注意到 .Rbuildignore 中的更改。我已经保存并重新启动了 R 会话。
每次我 运行 devtools::check()
在我的包裹上它都会抛出一条关于:
> checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
‘.DS_Store’
我的 .Rbuildignore 包括:
^.*\.Rproj$
^\.Rproj\.user$
^\.DS_Store$
如何让 check()
忽略该文件?
我重新启动了 RStudio,它自行修复了。我不知道为什么在保存文件后它没有注意到 .Rbuildignore 中的更改。我已经保存并重新启动了 R 会话。