Dolphin / .gitignore
xfey's picture
[init] update application file
dfb1341
raw
history blame contribute delete
624 Bytes
# Python相关
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# 环境文件
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# 编辑器文件
.vscode/
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# 日志和数据库
*.log
*.sqlite
*.db
# 系统文件
.DS_Store
Thumbs.db
# 测试相关
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# 输出文件
*.csv
*.json
*.xlsx
# *.pdf
out/
output/
# Jupyter笔记本
.ipynb_checkpoints