chore: 清理 .gitignore 重复条目

This commit is contained in:
tukuaiai 2025-12-19 01:15:17 +08:00
parent 1a00ac4560
commit 328b53105b
1 changed files with 73 additions and 106 deletions

179
.gitignore vendored
View File

@ -1,107 +1,74 @@
# Python # Python
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
.history/ *$py.class
*$py.class *.so
*.so .Python
*.jsonl build/
.Python develop-eggs/
build/ dist/
develop-eggs/ downloads/
dist/ eggs/
downloads/ .eggs/
eggs/ lib/
.eggs/ lib64/
lib/ parts/
lib64/ sdist/
parts/ var/
sdist/ wheels/
backups/ *.egg-info/
var/ .installed.cfg
wheels/ *.egg
*.egg-info/ MANIFEST
.installed.cfg
*.egg # Virtual Environment
MANIFEST .venv/
*.csv env/
*.zip venv/
*.jsonl ENV/
*.db
*.pyc # IDE
*.png .vscode/
*.jpg .idea/
backups/ *.swp
*.swo
# Virtual Environment *~
.venv .DS_Store
env/ .history/
venv/
ENV/ # Testing
env.bak/ .pytest_cache/
venv.bak/ .coverage
*.gz *.cover
.hypothesis/
# IDE
.vscode/ # Logs
.idea/ *.log
*.swp logs/
*.swo
*~ # Data files
.DS_Store *.csv
*.zip
# Testing *.jsonl
.pytest_cache/ *.db
.coverage *.pyc
*.cover *.png
*.py,cover *.jpg
.hypothesis/ *.pdf
.pytest_cache/ *.gz
# Logs # Environments
*.log .env
*.log.[0-9]* .env.local
*.out .env.*.local
logs/*.log
logs/*.out # mypy
.mypy_cache/
# 项目特定
# Backup
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# Celery
*.pyc
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.env.local
.env.*.local
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# backtest folder
src/backtest/
# Additional exclusions
.history/
.venv_patterns/
logs/
# Backup files
*.bak
*.tmp
backups/gz/
*.pdf
1
backups/ backups/
*.bak
*.tmp
# Wiki (separate repo)
.github/wiki/