mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 09:02:23 +00:00
- Merge leggend API components into leggen (api/, services/, background/) - Replace leggend command with 'leggen server' subcommand - Consolidate configuration systems into leggen.utils.config - Update environment variables: LEGGEND_API_URL -> LEGGEN_API_URL - Rename LeggendAPIClient -> LeggenAPIClient - Update all documentation, Docker configs, and compose files - Fix all import statements and test references - Remove duplicate utility files and clean up package structure All tests passing (101/101), linting clean, server functionality preserved. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
630 B
YAML
24 lines
630 B
YAML
repos:
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
rev: "v0.13.0"
|
|
hooks:
|
|
- id: ruff-check
|
|
- id: ruff-format
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
exclude: ".*\\.md$"
|
|
- id: end-of-file-fixer
|
|
- id: check-added-large-files
|
|
- repo: local
|
|
hooks:
|
|
- id: mypy
|
|
name: Static type check with mypy
|
|
entry: uv run mypy leggen --check-untyped-defs
|
|
files: "^leggen/.*"
|
|
language: "system"
|
|
types: ["python"]
|
|
always_run: true
|
|
pass_filenames: false
|