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: local hooks: - id: uv-lock name: uv lock entry: bash -c 'uv lock && uv export --format requirements.txt --no-hashes > requirements.txt' language: system pass_filenames: false stages: [commit]