diff options
| author | prabinpanta0 <pantaprabin30@gmail.com> | 2025-10-26 19:34:56 +0545 |
|---|---|---|
| committer | prabinpanta0 <pantaprabin30@gmail.com> | 2025-10-26 19:34:56 +0545 |
| commit | f86f0e7c7819bc7dd970353e81e51985b3267a34 (patch) | |
| tree | 1136504b535a40738851beca62bbc14e0348e0bb /.gitignore | |
| parent | 53fe242ffdddf74bf13e32999027053ee4614b20 (diff) | |
gitignore: add ignores for Python artifacts, virtualenvs, test/coverage, lint caches and editor files
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -1,3 +1,43 @@ WARP.md .warp.md result + +# Python artifacts +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.so +*.egg +*.egg-info/ +.eggs/ +dist/ +build/ +eggs/ +pip-wheel-metadata/ + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ +.env + +# Testing and coverage +.pytest_cache/ +.coverage +.cache/ +.tox/ +htmlcov/ + +# Type checking and linting +.mypy_cache/ +.pytype/ +.flake8 +.ruff_cache/ + +# IDE and editor directories +.idea/ +.vscode/ +*.swp +*.swo |
