repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/pre-commit/mirrors-isort rev: v5.10.1 # must be >5.0.0 for black compatibility hooks: - id: isort args: ["--profile", "black", "."] - repo: https://github.com/ambv/black rev: 23.7.0 hooks: - id: black - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.4.1 hooks: - id: mypy additional_dependencies: [types-setuptools, types-requests, types-python-dateutil] args: [--ignore-missing-imports, --disable-error-code, "annotation-unchecked"] verbose: true