Files
.pouch/.gitignore
2026-07-04 10:50:03 +08:00

34 lines
351 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Pythonskiff CLI 运行时产物)
__pycache__/
*.py[cod]
*$py.class
*.so
# 虚拟环境
.venv/
venv/
env/
# 打包 / 测试(若后续扩展)
*.egg-info/
.eggs/
dist/
build/
.pytest_cache/
.coverage
htmlcov/
# 编辑器 / IDE
.idea/
*.swp
*.swo
*~
# 系统文件
.DS_Store
Thumbs.db
# 本地环境配置(勿提交密钥)
.env
.env.*