mirror of
https://github.com/thesleepingsage/hypr-lens.git
synced 2026-06-03 04:04:41 +02:00
3446e3f619
Creates symlinks from install dirs to repo for live editing. Also adds wiki/ to .gitignore for local wiki editing.
87 lines
2.1 KiB
Plaintext
87 lines
2.1 KiB
Plaintext
# ─── Python ──────────────────────────────────────────────────────────────────
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env/
|
|
ENV/
|
|
.python-version
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
.eggs/
|
|
|
|
# ─── QuickShell / QML ────────────────────────────────────────────────────────
|
|
# QML cache
|
|
.qmlc
|
|
*.qmlc
|
|
qmlcache/
|
|
|
|
# ─── Development ─────────────────────────────────────────────────────────────
|
|
# Claude Code / AI assistant
|
|
.claude/
|
|
|
|
# Wiki (cloned separately for local editing)
|
|
wiki/
|
|
|
|
# IDE / Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.settings/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# ─── Build & Temp ────────────────────────────────────────────────────────────
|
|
# OS generated
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.backup
|
|
*.log
|
|
|
|
# ─── Project Specific ────────────────────────────────────────────────────────
|
|
# Backups directory (development iterations, not for deployment)
|
|
backups/
|
|
assets/timeline*
|
|
|
|
# User-specific context memories (development notes)
|
|
docs/
|
|
|
|
# Runtime generated
|
|
*.pid
|
|
*.sock
|
|
|
|
# Screenshots/recordings captured during testing
|
|
test-captures/
|
|
|
|
# ─── Secrets / Sensitive ─────────────────────────────────────────────────────
|
|
# Never commit credentials
|
|
*.pem
|
|
*.key
|
|
.env.local
|
|
.env.*.local
|
|
credentials.json
|
|
secrets.json
|