gitignore: add ignores for Python artifacts, virtualenvs, test/coverage, lint caches and editor files

This commit is contained in:
prabinpanta0
2025-10-26 19:34:56 +05:45
parent 53fe242ffd
commit f86f0e7c78

40
.gitignore vendored
View File

@@ -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