Files
llm-automation-docs-and-rem…/.gitignore
dnviti 229d47e291
Some checks failed
CI/CD Pipeline / Build and Push Docker Images (api) (push) Blocked by required conditions
CI/CD Pipeline / Build and Push Docker Images (chat) (push) Blocked by required conditions
CI/CD Pipeline / Build and Push Docker Images (frontend) (push) Blocked by required conditions
CI/CD Pipeline / Build and Push Docker Images (worker) (push) Blocked by required conditions
CI/CD Pipeline / Deploy to Staging (push) Blocked by required conditions
CI/CD Pipeline / Deploy to Production (push) Blocked by required conditions
CI/CD Pipeline / Run Tests (push) Has been cancelled
CI/CD Pipeline / Security Scanning (push) Has been cancelled
CI/CD Pipeline / Lint Code (push) Has been cancelled
CI/CD Pipeline / Generate Documentation (push) Has been cancelled
fix: resolve all MyPy type errors and add poetry.lock for reproducible builds
- Install missing type stubs (types-PyYAML, celery-types, types-redis)
- Fix template_generator.py: add explicit type casts for YAML data
- Fix documentation_tasks.py: add Task type hints for Celery decorators
- Fix api/main.py: add type annotations for AsyncResult and response dicts
- Fix chat/main.py: add type ignore for socketio (no stubs available)
- Remove poetry.lock from .gitignore (needed for Docker builds)
- Add poetry.lock to ensure reproducible dependency installation
- Format code with Black and verify with Ruff

All MyPy checks now pass: 18 errors → 0 errors

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-21 13:33:51 +02:00

78 lines
631 B
Plaintext

# 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
# Virtual environments
venv/
ENV/
env/
.venv
# Poetry
# poetry.lock should be committed for reproducible builds
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Environment
.env
.env.local
.env.*.local
# Logs
*.log
logs/
# Database
*.db
*.sqlite
# Output
output/
data/chroma_db/
# Coverage
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
# Testing
.pytest_cache/
.tox/
# Docker
.dockerignore
# OS
.DS_Store
Thumbs.db
# Temporary
tmp/
temp/
*.tmp