| # Git files | |
| .git | |
| .gitignore | |
| .github | |
| # Python cache | |
| __pycache__ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| .venv | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Documentation | |
| *.md | |
| !README.md | |
| CONTRIBUTING.md | |
| CHANGELOG.md | |
| SECURITY.md | |
| # Test files | |
| test_*.py | |
| tests/ | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| *.coverage | |
| # Development files | |
| .editorconfig | |
| .pre-commit-config.yaml | |
| Makefile | |
| setup-dev.sh | |
| requirements-dev.txt | |
| # Logs | |
| *.log | |
| log.txt | |
| # Credentials (never include) | |
| creds/ | |
| *.json | |
| !package.json | |
| *.toml | |
| !pyproject.toml | |
| .env | |
| .env.* | |
| # Temporary files | |
| *.tmp | |
| *.bak | |
| tmp/ | |