25 lines
535 B
YAML
25 lines
535 B
YAML
repos:
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.13.2
|
|
hooks:
|
|
- id: isort
|
|
language_version: python
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.3.5
|
|
hooks:
|
|
- id: ruff
|
|
args: ["--fix"]
|
|
- id: ruff-format
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.9.0
|
|
hooks:
|
|
- id: mypy
|
|
language_version: python
|
|
exclude: tests/.*
|
|
additional_dependencies:
|
|
- types-requests
|
|
- types-attrs
|
|
- pydantic~=2.0
|