-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
54 lines (41 loc) · 931 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Ignore RStudio project files and user-specific settings
*.Rproj.user
*.Rhistory
.RData
.Ruserdata
.Rdata
.Rproj.user/
# Ignore OAuth tokens
.httr-oauth
# Ignore macOS-specific files
.DS_Store
# Ignore development files and directories
dev/*
# Ignore documentation files generated by roxygen2
docs
# Ignore compiled code (e.g., C/C++/Fortran)
*.o
*.so
*.dll
# Ignore R package build artifacts
*.tar.gz
*.Rcheck/
# Ignore covr package coverage files
coverage/
# Ignore temporary files created during R CMD check
.Rbuildignore
# Ignore test logs
tests/testthat/test-*.log
# Ignore vignettes cache and logs
vignettes/*.html
vignettes/*.pdf
vignettes/*.R
# Ignore renv lockfile and library (if using renv for dependency management)
renv.lock
renv/library/
# Ignore packrat files (if using packrat for dependency management)
packrat/lib*/**
packrat/src/**
# Ignore hidden files and directories (e.g., swap files)
*.swp
*~