Skip to content

Commit a5ad985

Browse files
committed
Update .gitignore
1 parent 12e8b3a commit a5ad985

File tree

6 files changed

+1522
-6
lines changed

6 files changed

+1522
-6
lines changed

.Rprofile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
source("renv/activate.R")

.gitignore

Lines changed: 75 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,82 @@
1-
.Rproj.user
1+
# =============================================================================
2+
# MacOS files
3+
# =============================================================================
4+
5+
# DS_store
6+
**/.DS_Store
7+
8+
# =============================================================================
9+
# R Files
10+
# =============================================================================
11+
12+
# History files
213
.Rhistory
14+
.Rapp.history
15+
16+
# Session Data files
317
.RData
18+
19+
# User-specific files
420
.Ruserdata
521

6-
.Rprofile
22+
# Example code in package build process
23+
*-Ex.R
24+
25+
# Output files from R CMD build
26+
/*.tar.gz
27+
28+
# Output files from R CMD check
29+
/*.Rcheck/
30+
31+
# RStudio files
32+
.Rproj.user/
33+
34+
# produced vignettes
35+
vignettes/*.html
36+
vignettes/*.pdf
37+
38+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
39+
.httr-oauth
40+
41+
# knitr and R markdown default cache directories
42+
*_cache/
43+
/cache
44+
45+
# =============================================================================
46+
# Python files
47+
# =============================================================================
48+
49+
# Python-generated files
50+
__pycache__/
51+
*.py[oc]
52+
build/
53+
dist/
54+
wheels/
55+
*.egg-info
56+
57+
# Virtual environments
58+
.venv
59+
60+
# =============================================================================
61+
# Microsoft files
62+
# =============================================================================
63+
64+
# Ignore all PowerPoint files (modern and old formats)
65+
*.pptx
66+
*.ppt
67+
68+
# Ignore MS Office temporary files that start with ~$
69+
~$*
70+
71+
# =============================================================================
72+
# Media files
73+
# =============================================================================
774

8-
renv
75+
# None
976

10-
.Renviron
77+
# =============================================================================
78+
# Other large files
79+
# =============================================================================
1180

12-
assets/data/
13-
*.Rproj
81+
# Ignore all zip files
82+
**.zip

assets/data/APS-DATA.duckdb

1.01 MB
Binary file not shown.

renv/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
library/
2+
local/
3+
cellar/
4+
lock/
5+
python/
6+
sandbox/
7+
staging/

0 commit comments

Comments
 (0)