-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
154 lines (123 loc) · 3.5 KB
/
Copy path.gitignore
File metadata and controls
154 lines (123 loc) · 3.5 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# ============================================================================
# R and RStudio
# ============================================================================
# History
.Rhistory
.Rapp.history
# Session data
.RData
.Rdata
.RDataTmp
.Ruserdata
# Example code from R CMD build
*-Ex.R
# RStudio project metadata
.Rproj.user/
# R CMD build output
/*.tar.gz
# R CMD check output
/*.Rcheck/
# Local package build helpers: track the hand-written extra.css and the
# favicons built from the logo (pkgdown never builds them on CI).
pkgdown/*
!pkgdown/extra.css
!pkgdown/favicon/
# Vignette build output.
# introduction + data-preparation are plain knitr .Rmd (rebuilt at build time),
# so their stray .html are ignored. The 6 precompiled modeling vignettes ship
# their prebuilt .html + R.rsp .html.asis to CRAN (Stan never runs at build).
# Their knitted .Rmd and figure/ are tracked too, so pkgdown can build the
# articles site on a fresh checkout (multinma's pattern); both are kept out of
# the CRAN tarball via .Rbuildignore, so the package itself stays lean.
vignettes/introduction.html
vignettes/data-preparation.html
# knitr writes figures beside the working directory, so knitting a vignette
# from the repository root drops a figure/ there. Only vignettes/figure is
# tracked.
/figure/
vignettes/*.pdf
# knitr / R Markdown caches
*_cache/
/cache/
*.utf8.md
*.knit.md
# R environment
.Renviron
# OAuth tokens (httr)
.httr-oauth
# pkgdown rendered site
docs/
# rsconnect deployments
rsconnect/
# ============================================================================
# Compiled artifacts (Stan / C++)
# ============================================================================
*.o
*.so
*.dll
*.o.tmp
src/*.o
src/*.so
src/*.dll
src/*.o.tmp
src/Makevars
src/Makevars.win
src/stan_meta_header.hpp
# CmdStan-compiled binaries inside inst/stan (only .stan sources are tracked)
inst/stan/**
!inst/stan/*.stan
!inst/stan/include/
!inst/stan/include/*.stan
# ============================================================================
# Operating system
# ============================================================================
.DS_Store
man/figures/logo_backup.svg
Thumbs.db
ehthumbs.db
desktop.ini
# ============================================================================
# Editors and IDEs
# ============================================================================
# Vim
*.swp
*.swo
*~
# VS Code
.vscode/
# JetBrains
.idea/
# Local editor and assistant state. Hidden directories are never part of the
# package, so ignore them as a class rather than maintaining a vendor list that
# goes stale; .github is the one that must stay tracked.
.*/
!.github/
.github/prompts/
# Emacs
\#*\#
.\#*
# ============================================================================
# Local development (per-clone; see .git/info/exclude for personal additions)
# ============================================================================
# Conventional names for local-only working copies
private/
scratch/
wip/
_*/
# Backup archives
*.zip
*.tar
*.tgz
docs
# Reporting
reporting/
Rplots.pdf
# Simulation checkpoints. The study writes one file per fit so an
# interrupted run resumes; only the assembled CSV and its manifest are results.
data-raw/*.csv.cells/
# The two source spreadsheets behind the shoulder and caries datasets are
# downloaded into data-raw/ to rebuild them and are never tracked.
data-raw/*.xlsx
data-raw/*.rtf
# testthat writes this beside the tests after a failing run
tests/testthat/testthat-problems.rds