# Pre-commit钩子配置 repos: - repo: https://github.com/psf/black rev: 25.9.0 hooks: - id: black language_version: python3.11 - repo: https://github.com/charliermarsh/ruff-pre-commit rev: v0.13.1 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - repo: https://github.com/pycqa/isort rev: 6.0.1 hooks: - id: isort args: ["--profile", "black"] - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.5.0 hooks: - id: mypy additional_dependencies: [types-all]