mev-inspect-py/.pre-commit-config.yaml
2021-12-14 12:59:14 -05:00

26 lines
601 B
YAML

repos:
- repo: https://github.com/ambv/black
rev: 20.8b1
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
- repo: local
hooks:
- id: pylint
name: pylint
entry: poetry run pylint
args: ['--rcfile=.pylintrc', --disable=redefined-builtin]
language: system
types: [python]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
hooks:
- id: 'mypy'
additional_dependencies:
- 'pydantic'
- 'types-requests'