mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-09 12:43:35 +00:00
- Drop *.pycs, *.pywz, *.pyzz — not real Python file extensions. - Move nano.*.save from "Project-specific" to "Editors & IDEs" where it belongs (nano editor backup files, not project artifacts). Made-with: Cursor
87 lines
901 B
Plaintext
87 lines
901 B
Plaintext
# Project-specific
|
|
.worktrees/
|
|
.assets
|
|
.docs
|
|
.env
|
|
.web
|
|
|
|
# Python bytecode & caches
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.pyw
|
|
*.pyz
|
|
__pycache__/
|
|
*.egg-info/
|
|
*.egg
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pytype/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.tox/
|
|
.nox/
|
|
.hypothesis/
|
|
|
|
# Build & packaging
|
|
dist/
|
|
build/
|
|
*.manifest
|
|
*.spec
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
|
|
# Test & coverage
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
coverage.xml
|
|
*.cover
|
|
|
|
# Lock files (project policy)
|
|
poetry.lock
|
|
uv.lock
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Linux
|
|
.directory
|
|
|
|
# Editors & IDEs (local workspace / user settings)
|
|
.vscode/
|
|
.cursor/
|
|
.idea/
|
|
.fleet/
|
|
*.code-workspace
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
nano.*.save
|
|
|
|
# Environment & secrets (keep examples tracked if needed)
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs & temp
|
|
*.log
|
|
logs/
|
|
tmp/
|
|
temp/
|
|
*.tmp
|