mirror of
https://github.com/ZhuLinsen/daily_stock_analysis
synced 2026-09-20 10:53:33 +08:00
31 lines
323 B
Plaintext
31 lines
323 B
Plaintext
# 忽略 Python 缓存
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# 忽略虚拟环境
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env.local
|
|
|
|
# 忽略 IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 忽略数据文件(可选,如果想持久化就注释掉)
|
|
# data/
|
|
# logs/
|
|
# reports/
|
|
|
|
# 忽略测试文件
|
|
test_*.py
|
|
*_test.py
|
|
|
|
# 忽略文档
|
|
*.md
|
|
!README.md
|