chore: add .gitignore and track vex index config
This commit is contained in:
+96
@@ -0,0 +1,96 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Python
|
||||
# ---------------------------------------------------------------------------
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# Virtual environments
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
.python-version
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Testing / coverage / type checking
|
||||
# ---------------------------------------------------------------------------
|
||||
.pytest_cache/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
htmlcov/
|
||||
coverage.xml
|
||||
*.cover
|
||||
.cache
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
.pyre/
|
||||
.pytype/
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Linters / formatters
|
||||
# ---------------------------------------------------------------------------
|
||||
.ruff_cache/
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Home Assistant (local dev/test instance)
|
||||
# ---------------------------------------------------------------------------
|
||||
.storage/
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
home-assistant.log*
|
||||
home-assistant_v2.db*
|
||||
.HA_VERSION
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Tooling caches (vex, code-review-graph, ast-index)
|
||||
# ---------------------------------------------------------------------------
|
||||
.vex/
|
||||
.code-review-graph/
|
||||
.ast-index/
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Claude Code (keep local-only config & runtime state out of VCS)
|
||||
# ---------------------------------------------------------------------------
|
||||
.claude/settings.local.json
|
||||
.claude/memory/
|
||||
.claude/*.lock
|
||||
.claude/scheduled_tasks.lock
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Editors / IDEs
|
||||
# ---------------------------------------------------------------------------
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# OS files
|
||||
# ---------------------------------------------------------------------------
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
Reference in New Issue
Block a user