Skip to content

Commit

Permalink
Merge pull request #230 from FredHutch/update-gitignore
Browse files Browse the repository at this point in the history
Update gitignore
  • Loading branch information
kelliemac authored Aug 26, 2024
2 parents ebb9496 + c6beac0 commit 5fc75e5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Bug fixes

Other improvements
* create_visc_project() now discards README.Rmd after knitting template to README.md (#223)
* Update PT report naming practices to the format VDCnnn_assay_PTreport_interim/final_(un)blinded.Rmd
* Update PT report naming practices to the format VDCnnn_assay_PTreport_interim/final_(un)blinded.Rmd (#202)
* Add auxiliary files to template .gitignore (.aux, .toc, .lof, .lot, .out, cache files, and .smbdelete files) (#230)

# VISCtemplates 1.3.2

Expand Down
11 changes: 10 additions & 1 deletion R/use_visc_gitignore.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,18 @@ use_visc_gitignore <- function(directory = ".") {
"Thumbs.db",
# files from Latex
"*.log",
"*.aux",
"*.toc",
"*.lof",
"*.lot",
"*.out",
"**/figure-latex/*.pdf",
"**/figure-docx/*.pdf",
"*.zip"
"*.zip",
# cache files
"*_cache/",
# other
".smbdelete*"
),
directory = directory
)
Expand Down

0 comments on commit 5fc75e5

Please sign in to comment.