Files
pydantic/.pre-commit-config.yaml
T
2022-07-06 08:52:01 +02:00

25 lines
439 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-yaml
- id: end-of-file-fixer
- repo: local
hooks:
- id: lint
name: Lint
entry: make lint
types: [python]
language: system
- id: mypy
name: Mypy
entry: make mypy
types: [python]
language: system
- id: pyupgrade
name: Pyupgrade
entry: make pyupgrade
types: [python]
language: system