-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
executable file
·52 lines (45 loc) · 1.28 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
49
50
51
52
# SPDX-FileCopyrightText: 2022 Zextras <https://www.zextras.com
#
# SPDX-License-Identifier: AGPL-3.0-only
repos:
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v2.3.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
args: []
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.4.1
hooks:
- id: mypy
exclude: ^tests/|gunicorn.conf.py
additional_dependencies:
- "pydantic"
- "returns"
- "types-Pillow"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.277
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/python/black.git
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/fsfe/reuse-tool
rev: v1.1.2
hooks:
- id: reuse
- repo: local
hooks:
- id: pytest-check
name: pytest-check
entry: python3 -m pytest
language: python
additional_dependencies: [
python-multipart, FastAPI, pydantic, httpx, uvicorn, gunicorn, Pillow,
respx, psutil, pypdfium2, pytest, pytest-mockito, returns, cairosvg
]
'types': [python]
pass_filenames: false
stages: [commit]