---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 25.1.0
hooks:
- id: black
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.9.9
hooks:
- id: ruff
args:
- --fix
- --exit-non-zero-on-fix
- repo: local
hooks:
- id: mypy
name: mypy
entry: script/run-mypy.sh
language: script
types: [python]
require_serial: true
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
exclude: '^tests/tool/testdata/.*\.yaml$'
args:
- --strict
- -c
- ".yaml-lint.yaml"
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.7.0
hooks:
- id: setup-cfg-fmt