# ---- Data: never commit ----------------------------------------------------
# Raw files are often large, sometimes restricted, and always re-obtainable
# from documentation/data-provenance.md -- whether you downloaded them from Pew
# or from a paper's data repository. Derived files are rebuilt by your code.
# The trailing /* ignores each folder's CONTENTS rather than the folder itself.
data/raw/*
data/derived/*

# ...but DO track the placeholders, so a fresh clone still has somewhere to put
# the source file and somewhere for your code to write the derived one.
# The leading ! un-ignores a path that an earlier rule excluded.
!data/raw/.gitkeep
!data/derived/.gitkeep

# ---- R and RStudio ---------------------------------------------------------
.Rproj.user/
.Rhistory
.RData
.Ruserdata

# ---- Quarto ----------------------------------------------------------------
/.quarto/
*_files/
*_cache/

# ---- Operating system junk -------------------------------------------------
.DS_Store
Thumbs.db
