mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
The 'lib/' rule (intended for Python virtualenv at repo root) was matching panel/src/lib/, hiding the entire panel API client + utility tree from git. Anchored Python build-artifact rules to the repo root with a leading slash so they only match at the top level. Adds 28 panel/src/lib files that should have been tracked from day one.
98 lines
1.0 KiB
Plaintext
98 lines
1.0 KiB
Plaintext
# Claude Code
|
|
.claude/agents/*
|
|
.claude/commands/*
|
|
.claude/hooks/*
|
|
.claude/scripts/*
|
|
.claude/skills/*
|
|
|
|
# Superpowers (session-private design + plans)
|
|
docs/superpowers/
|
|
|
|
# Python (anchored to repo root so the names don't shadow legitimate
|
|
# subdirectories like panel/src/lib).
|
|
__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
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# uv
|
|
.uv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Ruff
|
|
.ruff_cache/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Alembic
|
|
alembic/versions/*.pyc
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
/data
|
|
/#recycle
|
|
.OLD/
|
|
logos/
|
|
|
|
# Panel (Next.js frontend)
|
|
panel/node_modules/
|
|
panel/.next/
|
|
panel/out/
|
|
panel/coverage/
|
|
panel/tsconfig.tsbuildinfo
|
|
panel/.env.local
|
|
panel/.env.*.local |