-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
103 lines (84 loc) · 1.65 KB
/
.gitignore
File metadata and controls
103 lines (84 loc) · 1.65 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# R package build artifacts
*.Rcheck/
*.tar.gz
*.Rproj.user/
.Rhistory
.RData
.Ruserdata
# RStudio project files
*.Rproj
# Temporary files
*~
*.swp
*.swo
.DS_Store
Thumbs.db
# Archived/deprecated code
archived_*/
old_*/
deprecated_*/
# Build outputs in parent directory
../*.tar.gz
# ===== CRITICAL: PRIVATE DATA PROTECTION =====
# NEVER commit actual research data with participant information
# Data files - all formats
*.csv
*.xlsx
*.xls
*.pdf
*.PDF
# Except: example/dummy data in inst/extdata (if you add it later)
!inst/extdata/*.pdf
!inst/extdata/*.csv
# CRITICAL: Test data folders with real participant data
tests/testdata_*/
tests/testdata*/
# Any folder named "data" or "test_data" or similar
data/
test_data/
test-data/
Data/
TEST_DATA/
private/
Private/
# Nextcloud sync files (if any)
.sync-conflict-*
*.sync-conflict-*
# Results/output folders
results/
Results/
output/
Output/
# Playwright/browser testing artifacts
.playwright-mcp/
test_screenshots/
# shinytest2 snapshots (platform-specific, regenerated on demand)
tests/testthat/_snaps/
# Documentation builds
docs/*.html
man/*.html
# VS Code / other editors
.vscode/
.idea/
# Mac files
.DS_Store
.AppleDouble
.LSOverride
# Windows files
Thumbs.db
ehthumbs.db
Desktop.ini
# Python (if you use any python tools)
__pycache__/
*.py[cod]
*$py.class
# ===== SAFE TO COMMIT =====
# The following are explicitly allowed and safe:
# - All R code (R/*.R)
# - All Shiny code (inst/shiny/**/*.R)
# - All tests (tests/testthat/*.R)
# - Documentation (docs/*.md, man/*.Rd)
# - Package metadata (DESCRIPTION, NAMESPACE, LICENSE)
# - README and other .md files
# - Scripts (.sh, but no data in them)
.Rproj.user