Files
leo-claude-mktplace/.gitignore
lmiranda b6a77d9b35 fix: critical plugin structure and configuration fixes
- Fix hooks.json: use valid PostToolUse event (not invalid task-completed)
- Move projman/plugin.json to projman/.claude-plugin/plugin.json
- Fix projman/.mcp.json to use venv python paths
- Add cmdb-assistant to marketplace.json
- Update .gitignore: allow .env files (private repo)
- Fix create_labels.py: use env vars instead of hardcoded token
- Add CLAUDE.md critical rules section to prevent future mistakes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-10 23:51:43 -05:00

123 lines
1.1 KiB
Plaintext

# Python
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environments
venv/
ENV/
env/
.venv/
# PyCharm
.idea/
# VS Code
.vscode/
# *.code-workspace
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# Pytest
.pytest_cache/
.coverage
htmlcov/
# Node.js (for MCP servers)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
.npm
.yarn/
# TypeScript
*.tsbuildinfo
dist/
build/
# Environment variables - NOT ignored (private repo)
# .env
# .env.local
# .env.*.local
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
*~
# Claude Code
.claude/settings.local.json
.claude/history/
# Logs
logs/
*.log
# Temporary files
tmp/
temp/
*.tmp
*.bak
*.swp
*.swo
# Build artifacts
*.wasm
*.exe
*.dll
*.so
*.dylib
# Testing
.tox/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
# Documentation builds
docs/_build/
site/
# Database
*.db
*.sqlite
*.sqlite3
# Secrets and credentials
*credentials*
*secret*
*token*
!.gitkeep