Skip to content

Commit c9b815d

Browse files
committed
Cleanup gitignore
1 parent d3d1145 commit c9b815d

File tree

1 file changed

+37
-30
lines changed

1 file changed

+37
-30
lines changed

.gitignore

+37-30
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,83 @@
11
*.c
22
*.o
33
*.so
4-
*.pyc
5-
*.pyd
64
*.exp
75
*.obj
86
*.lib
7+
*.xml
8+
9+
# Logs and patches
910
*.log
1011
*.patch
12+
log/
13+
logs/
14+
15+
# Profiler and database
1116
*.prof
1217
*.rdb
13-
*.xml
18+
*.sqlite
19+
20+
# Secrets and environment files
1421
*.key
1522
*.key_secret
16-
*.sqlite
1723
*.env
24+
25+
# Compressed files
1826
*.tar.gz*
1927
*.zip
20-
*.iml
2128

22-
*.dbz
23-
*.dbn
24-
*.dbn.zst
25-
!/nautilus_core/adapters/src/databento/test_data/*
29+
# IntelliJ and VSCode project
30+
*.iml
31+
.idea/
32+
.vscode/
2633

34+
# Benchmarking and coverage
2735
.benchmarks*
2836
.coverage*
37+
38+
# Rust related
39+
*target/
40+
41+
# Python related
42+
*.pyc
43+
*.pyd
2944
.history*
3045
.cache/
31-
.env/
32-
.git/
33-
.idea/
34-
.ipynb_checkpoints
3546
.mypy_cache/
3647
.profile/
3748
.pytest_cache/
38-
.python-version
3949
.ruff_cache/
40-
.vscode/
41-
42-
/catalog/
43-
/examples/notebooks/catalog/
50+
*dask-worker-space*
51+
venv*/
4452

45-
__pycache__
53+
# Build environment and temp
4654
_build/
4755
build/
48-
data_catalog/
4956
dist/
5057
env/
51-
log/
52-
logs/
53-
secrets/
54-
ta-lib/
5558
*temp/
56-
*target/
57-
venv*/
5859

60+
# System and editor specific
61+
.cursorignore
5962
.DS_Store
6063
.null-ls*
6164
PERF.JSON
6265
output.json
63-
*dask-worker-space*
64-
.cursorignore
6566

67+
# Docs and notebooks
6668
docs/**/*.ipynb
6769
examples/backtest/notebooks/catalog
70+
71+
# Nautilus specific
72+
bench_data/
73+
/catalog/
74+
/examples/notebooks/catalog/
6875
nautilus_trader/**/.gitignore
6976
nautilus_trader/test_kit/mocks/.nautilus/
7077
tests/test_data/catalog/
7178
tests/unit_tests/catalog/
7279
tests/unit_tests/persistence/catalog
73-
bench_data/
7480

81+
# Exceptions
82+
!/nautilus_core/adapters/src/databento/test_data/*
7583
!tests/integration_tests/adapters/betfair/responses/*.log
76-
**/test_db.sqlite

0 commit comments

Comments
 (0)