Skip to content

Commit

Permalink
feat: ✨ ignore .DS_Store and .quarto files
Browse files Browse the repository at this point in the history
Closes #136
  • Loading branch information
lwjohnst86 committed Oct 4, 2024
1 parent 3630189 commit a37d0ca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions R/setup_project.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,10 @@ setup_with_git <- function() {
# Utilities -----------------------------------------------------

set_git_ignore_files <- function() {
base::writeLines(c(".Rhistory", ".RData", ".Rproj.user"),
".gitignore")
base::writeLines(
c(".Rhistory", ".RData", ".Rproj.user", ".DS_Store", ".quarto"),
".gitignore"
)
}

path_remove_spaces <- function(path) {
Expand Down

0 comments on commit a37d0ca

Please sign in to comment.