default_language_version: python: python3 ci: autofix_prs: true autoupdate_commit_msg: '[pre-commit.ci] pre-commit suggestions' autoupdate_schedule: quarterly repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 hooks: - id: check-yaml - id: check-case-conflict - id: detect-private-key - id: check-added-large-files args: ['--maxkb=1000'] - id: requirements-txt-fixer - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.14.7 hooks: - id: ruff-check args: [ --fix ] - repo: https://github.com/PyCQA/autoflake rev: v2.0.2 hooks: - id: autoflake args: [--remove-all-unused-imports, --in-place] - repo: https://github.com/pycqa/isort rev: 5.13.2 # 选一个稳定版本 hooks: - id: isort args: - "--profile=black" # 常见:与 Black 对齐风格 - "--filter-files" # 忽略已在 .gitignore 的文件 additional_dependencies: [] # 需要插件时在这里加 - repo: https://github.com/psf/black rev: 24.3.0 hooks: - id: black name: Format code additional_dependencies: ['click==8.0.2']