Skip to content

Commit

Permalink
Merge pull request #21 from TanguyBarthelemy/develop
Browse files Browse the repository at this point in the history
harmonisation of .gitignore and .Rbuildignore
  • Loading branch information
DanielOllech authored May 15, 2024
2 parents 75a0edb + 051870f commit 989c321
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 644 deletions.
27 changes: 24 additions & 3 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
^.*\.Rproj$
^\.Rproj\.user$

^\.git$
^\.github$
^LICENSE$
^.lintr$
^README.Rmd$

^README\.Rmd$
^README-.*\.png$

^Meta$
^docs$
^doc$
^pkgdown$
^_pkgdown\.yml$

^\.lintr$

^appveyor\.yml$
.travis.yml

cran-comments.md

^\.DS_Store$

^revdep$
^reconf\.sh$
^rjd3toolkit-java-deps\.xml$
5 changes: 1 addition & 4 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
workflow_dispatch

name: test-coverage

Expand Down
53 changes: 51 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,55 @@
.Rproj.user
# History files
.Rhistory
.Rapp.history

# Session Data files
.RData
.RDataTmp

# User-specific files
.Ruserdata

TO_DO
# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf
Meta/
inst/doc/
doc/

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md

# R Environment Variables
.Renviron

# pkgdown site
docs/

# translation temp files
po/*~

# RStudio Connect folder
rsconnect/

# Hidden file from mac-os
.DS_Store
Loading

0 comments on commit 989c321

Please sign in to comment.