| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # Git相关
- .git
- .gitignore
- .gitattributes
- # Python相关
- __pycache__
- *.pyc
- *.pyo
- *.pyd
- .Python
- *.egg-info/
- dist/
- build/
- *.egg
- .pytest_cache/
- .coverage
- htmlcov/
- # 虚拟环境
- venv/
- env/
- ENV/
- .venv
- # IDE相关
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- .DS_Store
- # 输出文件
- output/
- logs/
- *.log
- # 临时文件
- tmp/
- temp/
- *.tmp
- # 文档
- *.md
- doc/
- docs/
- # 开发工具
- .editorconfig
- .pre-commit-config.yaml
- Makefile
- # 不需要的目录
- .github/
|