-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
90 lines (80 loc) · 2.9 KB
/
.gitignore
File metadata and controls
90 lines (80 loc) · 2.9 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
# ── Python ───────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyd
*.pyo
*.pyz
dist/
*.egg-info/
*.egg
.eggs/
# ── Virtual environments ─────────────────────────────────────────────────────
.env
.env.*
.venv/
env/
venv/
# ── C++ build artifacts ──────────────────────────────────────────────────────
build/
.build/
*.exe
*.dll
*.so
*.dylib
*.o
*.obj
*.a
*.lib
*.pdb
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
compile_commands.json
CTestTestfile.cmake
Makefile
InstallScripts.json
Testing/
# ── Generated data (cached market snapshots) ─────────────────────────────────
data/raw/*.json
data/processed/*.csv
data/processed/*.parquet
data/surfaces/*
!data/raw/.gitkeep
!data/processed/.gitkeep
!data/surfaces/.gitkeep
# ── Generated output (plots, reports, models) ────────────────────────────────
output/plots/*
output/reports/*
output/models/*
output/calibrations/*
output/adjustments/*
output/logs/*
!output/**/.gitkeep
# ── IDE & editor ─────────────────────────────────────────────────────────────
.vscode/
.idea/
*.code-workspace
*.suo
*.user
# ── OS ───────────────────────────────────────────────────────────────────────
.DS_Store
.DS_Store?
Thumbs.db
desktop.ini
ehthumbs.db
# ── Jupyter ──────────────────────────────────────────────────────────────────
.ipynb_checkpoints/
*.ipynb_checkpoints
# ── Logs & temp ──────────────────────────────────────────────────────────────
*.log
*.tmp
*.swp
*.bak
*.orig
# ── pytest / coverage ────────────────────────────────────────────────────────
.pytest_cache/
.coverage
htmlcov/
coverage.xml
# ── github ────────────────────────────────────────────────────────────────────
.github