# This is the configuration file for pre-commit (https://pre-commit.com/). # To use: # * Install pre-commit (https://pre-commit.com/#installation) # * Copy this file as ".pre-commit-config.yaml" # * Run "pre-commit install". repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.3.0 hooks: - id: check-toml - id: check-yaml - id: debug-statements - id: end-of-file-fixer - id: mixed-line-ending args: [ "--fix=lf" ] - id: trailing-whitespace - repo: https://github.com/pycqa/isort rev: 5.10.1 hooks: - id: isort args: [ "-a", "from __future__ import annotations" ] exclude: "docs/conf.py" - repo: https://github.com/asottile/pyupgrade rev: v3.2.2 hooks: - id: pyupgrade args: [ "--py37-plus", "--keep-mock" ] exclude: "docs/conf.py" - repo: https://github.com/psf/black rev: 22.10.0 hooks: - id: black - repo: https://github.com/csachs/pyproject-flake8 rev: v5.0.4a1.post1 hooks: - id: pyproject-flake8 - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.991 hooks: - id: mypy additional_dependencies: [ "pytest", "trio-typing", "packaging" ] - repo: https://github.com/pre-commit/pygrep-hooks rev: v1.9.0 hooks: - id: python-check-blanket-noqa - id: python-check-blanket-type-ignore - id: python-no-eval - id: rst-backticks - id: rst-directive-colons - id: rst-inline-touching-normal