-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
35 lines (34 loc) · 879 Bytes
/
.pre-commit-config.yaml
File metadata and controls
35 lines (34 loc) · 879 Bytes
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
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.6
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/pycqa/isort
rev: 7.0.0
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: 25.11.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.18.2
hooks:
- id: mypy
args: [--no-incremental]
additional_dependencies: [
celery-types==0.23.0,
"django-stubs[compatible-mypy]==5.2.5",
structlog==25.2.0,
django-extensions==4.1,
django-ipware==7.0.1,
]
exclude: |
(?x)(
^django_structlog_demo_project/|
^config/|
^docs/|
^manage.py
)