-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy path.gitignore
More file actions
87 lines (76 loc) · 2.07 KB
/
Copy path.gitignore
File metadata and controls
87 lines (76 loc) · 2.07 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
# ==============================================================================
# .gitignore for Academic Claude Code Projects
# ==============================================================================
# LaTeX build artifacts
*.aux
*.bbl
*.blg
*.fdb_latexmk
*.fls
*.log
*.nav
*.out
*.snm
*.toc
*.vrb
*.synctex.gz
*.run.xml
*-blx.bib
# Compiled PDFs (uncomment to track specific PDFs)
# *.pdf
# Python
__pycache__/
*.pyc
*.pyo
# R
.Rproj.user/
.Rhistory
.RData
.Rdata
# OS files
.DS_Store
Thumbs.db
# Claude Code local files (not shared across machines)
.claude/settings.local.json
.claude/state/
CLAUDE.local.md
# IDE
# .vscode/settings.json ships in the template (carries shipped Claude Code permission-mode
# recommendations — see TROUBLESHOOTING.md "Permissions / bypass / statusline" for the typo
# fix forkers need). Other .vscode/ content is developer-machine-specific.
.vscode/*
!.vscode/settings.json
.idea/
*.swp
*.swo
*~
# Quarto rendering artifacts
.quarto/
# quality_reports/ — per-project session logs, plans, specs, merges, audits,
# diagnoses. The directory structure ships in the template (via .gitkeep), but
# the content is PROJECT-INTERNAL and shouldn't be inherited by forks.
# (diagnoses/ in particular may hold real data values/paths — never ship them;
# audits/ are repo-specific gap analyses, noise for a forker.)
quality_reports/plans/*
quality_reports/specs/*
quality_reports/session_logs/*
quality_reports/merges/*
quality_reports/decisions/*
quality_reports/checkpoints/*
quality_reports/preregistrations/*
quality_reports/audits/*
quality_reports/diagnoses/*
!quality_reports/plans/.gitkeep
!quality_reports/specs/.gitkeep
!quality_reports/session_logs/.gitkeep
!quality_reports/merges/.gitkeep
!quality_reports/decisions/.gitkeep
!quality_reports/checkpoints/.gitkeep
!quality_reports/preregistrations/.gitkeep
!quality_reports/audits/.gitkeep
!quality_reports/diagnoses/.gitkeep
# R analysis outputs (generated artifacts; keep scripts, ignore outputs)
scripts/R/_outputs/
# Output artifacts — uncomment lines below based on your preference
# *.rds
# output/**/*.rds