Files
quant/.gitignore
Gahow Wang 4f2eb50802 chore: update .gitignore for SEC data and tool configs
Add .qoder/ (local tool settings) and SEC fundamental data
(sec_frames/, sec_company_tickers.json) to prevent large
downloaded datasets from being tracked.
2026-05-14 12:53:55 +08:00

47 lines
651 B
Plaintext

.claude
.qoder/
# Python
__pycache__/
*.py[cod]
*.egg-info/
build/
dist/
wheels/
# Virtual environment
.venv/
# Data files — downloaded at runtime, large CSVs
data/*.csv
data/*.png
# Universe caches — re-fetched daily
data/universe_*.json
# Trader state — per-machine, regenerated by auto/simulate
data/trader_*.json
# Factor attribution output and cached factors
data/attribution_*/
data/factors/
data/factors_review_tmp/
# SEC fundamental data — fetched from EDGAR API
data/sec_frames/
data/sec_company_tickers.json
# External tool artifacts
docs/superpowers/
# IDE / editor
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db