-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
48 lines (48 loc) · 1.42 KB
/
.pre-commit-config.yaml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
exclude: ^src/main/migrations/
- id: trailing-whitespace
exclude: ^src/main/migrations/
- id: check-byte-order-marker
exclude: ^src/main/migrations/
- repo: https://github.com/ambv/black
rev: 23.10.0
hooks:
- id: black
exclude: ^src/main/migrations/
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.8.2
hooks:
- id: reorder-python-imports
exclude: ^src/main/migrations/
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
hooks:
- id: flake8
args: ["--config=src/setup.cfg"]
language_version: python3
exclude: ^src/main/migrations/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.971
hooks:
- id: mypy
name: Run type checks
args: ["--ignore-missing-imports", "--install-types", "--non-interactive"]
exclude: ^src/main/migrations/
- repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1
hooks:
- id: pydocstyle
exclude: ^src/main/migrations/
- repo: local
hooks:
- id: migrations-check
language: system
name: Check for uncreated migrations.
entry: bash -c "./src/manage.py makemigrations --check --dry-run"
types: ["python"]
pass_filenames: false