updated .gitignore

This commit is contained in:
2026-01-20 21:43:24 +05:30
parent 94b90f2ccf
commit 5073f9d73f

91
.gitignore vendored
View File

@@ -1 +1,90 @@
.idea # =========================
# Python bytecode & caches
# =========================
__pycache__/
*.py[cod]
*$py.class
# =========================
# C extensions
# =========================
*.so
# =========================
# Distribution / packaging
# =========================
.Python
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
wheels/
MANIFEST
# =========================
# Virtual environments
# =========================
.venv/
venv/
ENV/
env/
# =========================
# Test / coverage outputs
# =========================
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.coverage.xml
test-results/
# =========================
# Lint / type checking
# =========================
.mypy_cache/
.dmypy.json
.pyre/
# =========================
# Docs build artifacts
# =========================
site/
docs/_site/
docs/build/
# =========================
# MkDocs / Sphinx output
# =========================
mkdocs.yml
site/
.build/
_doctrees/
# =========================
# IDEs & editors
# =========================
.vscode/
.idea/
*.swp
*.swo
*.bak
*.tmp
# =========================
# OS-specific
# =========================
.DS_Store
Thumbs.db
# =========================
# Logs
# =========================
*.log
# =========================
# Local config overrides
# =========================
.env
.env.*