Files
NebulaShell/.gitignore
2026-04-26 09:25:06 +08:00

39 lines
291 B
Plaintext

```
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
.coverage
htmlcov/
.coverage.*
.pytest_cache/
.mypy_cache/
.tox/
.venv/
venv/
.env
.env.local
*.env.*
# Build artifacts
dist/
build/
*.egg-info/
# Logs
*.log
# Editors
.vscode/
.idea/
*.swp
*.swo
*.tmp
# OS
.DS_Store
Thumbs.db
```