-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (47 loc) · 867 Bytes
/
.gitignore
File metadata and controls
53 lines (47 loc) · 867 Bytes
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
.idea
/.idea/
.vscode
.github
backlog.md
# --- R Specific ---
.Rhistory
*.RData
.Ruserdata
.Rproj.user/
.Rapp.history
.Rsession_device
# --- Package Build Artifacts ---
# These are generated when you build or check your package
*.Rcheck/
/vignettes/*.html
/vignettes/*.pdf
/man/*.Rd
# Note: Some people prefer to track .Rd files,
# but they are auto-generated from Roxygen2 tags in your R/ files.
# --- Data & Results (The Pipeline specific stuff) ---
# Ignore all raw data formats to be safe
*.csv
*.xlsx
*.xls
*.rds
*.rda
*.parquet
*.sqlite
*.db
# Ignore your output reports (rendered from your pipeline)
/inst/reports/*.html
/inst/reports/*.pdf
/output/
/paper/
/results/
*.tar.gz
*.zip
# --- Environment & Secrets ---
.env
.Renviron
auth/
credentials/
*-secret.R
# --- OS Specific ---
.DS_Store
Thumbs.db