--- repos: ########### # General # ########### - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.3.0 hooks: - id: trailing-whitespace - repo: https://github.com/jorisroovers/gitlint rev: v0.17.0 hooks: - id: gitlint ########## # Python # ########## - repo: https://github.com/ambv/black rev: 22.6.0 hooks: - id: black - repo: https://github.com/PyCQA/isort rev: 5.10.1 hooks: - id: isort - repo: https://gitlab.com/pycqa/flake8 rev: 3.9.2 hooks: - id: flake8 args: ["--max-line-length=120"] - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.971 hooks: - id: mypy additional_dependencies: - types-tabulate - types-requests - types-six - types-PyYAML