repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: check-added-large-files - id: check-ast - id: check-case-conflict - id: check-json - id: check-merge-conflict - id: check-toml - id: end-of-file-fixer - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. rev: v0.8.6 hooks: - id: ruff - repo: https://github.com/pycqa/isort rev: 5.13.2 hooks: - id: isort args: ["--profile", "black"] - repo: https://github.com/asottile/pyupgrade rev: v3.19.1 hooks: - id: pyupgrade args: ["--py310-plus"] - repo: https://github.com/psf/black rev: 24.10.0 hooks: - id: black args: - --line-length=120 - repo: https://github.com/jorisroovers/gitlint rev: v0.19.1 hooks: - id: gitlint name: gitlint language: python entry: gitlint args: [--staged, --msg-filename] stages: [commit-msg] - repo: https://github.com/astral-sh/uv rev: '0.5.3' hooks: - id: uv-lock - id: uv-export name: uv export for base requirements args: [--no-hashes, --format, requirements.txt, --output, requirements.txt]