mev-inspect-py/.pre-commit-config.yaml
2021-10-16 19:48:31 -04:00

17 lines
394 B
YAML

repos:
- 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'