1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.4
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/pycqa/isort
rev: 6.0.1
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: 25.1.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
hooks:
- id: mypy
args: [--no-incremental]
additional_dependencies: [
celery-types==0.22.0,
"django-stubs[compatible-mypy]==5.1.3",
structlog==24.4.0,
django-extensions==3.2.3,
django-ipware==7.0.1,
]
exclude: |
(?x)(
^django_structlog_demo_project/|
^config/|
^docs/|
^manage.py
)
|