Skip to content

Commit

Permalink
Add mypy to pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsvante committed Mar 29, 2021
1 parent f99d9b7 commit d92b186
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .pre-commit-config.yaml
Expand Up @@ -3,14 +3,19 @@ default_language_version:

repos:
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
rev: 3.9.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 5.6.3
rev: 5.8.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.812
hooks:
- id: mypy
additional_dependencies: [pydantic]

0 comments on commit d92b186

Please sign in to comment.