updated .gitignore
This commit is contained in:
91
.gitignore
vendored
91
.gitignore
vendored
@@ -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.*
|
||||
|
||||
Reference in New Issue
Block a user