-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
82 lines (74 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
types: [python]
- id: end-of-file-fixer
types: [text]
- repo: https://github.com/pycqa/flake8
rev: 7.1.0
hooks:
- id: flake8
stages: [commit, manual]
additional_dependencies: [flake8-bugbear]
types: [python]
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
stages: [commit]
types: [python]
- id: black
name: black-check
args:
- --check
- --diff
stages: [manual]
types: [python]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
stages: [commit]
types: [python]
- id: isort
name: isort-check
args:
- --check-only
stages: [manual]
types: [python]
- repo: local
hooks:
- id: mypy
stages: [commit]
exclude: "^tests/"
name: mypy
entry: mypy
language: system
types: [python]
require_serial: true
- repo: local
hooks:
- id: pytest
stages: [commit]
name: pytest-no-snap
entry: pytest
args: ["-m", "not snap"]
pass_filenames: false
language: system
types: [python]
require_serial: true
- repo: https://github.com/python-poetry/poetry
rev: '1.8.3'
hooks:
- id: poetry-export
stages: [commit]
name: poetry-export-server
args:
- --output=requirements-server.txt
- --only=main
- --extras=server
- --without-hashes