-
Notifications
You must be signed in to change notification settings - Fork 17
/
.pre-commit-config.yaml
39 lines (39 loc) · 1.02 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 24.4.2
hooks:
- id: black
exclude: ^hordelib/nodes/.*\..*$
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.3
hooks:
- id: ruff
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.10.0'
hooks:
- id: mypy
exclude: ^examples/.*$ # FIXME
additional_dependencies: [
pydantic,
strenum,
types-colorama,
types-docutils,
types-Pillow, types-psutil,
types-Pygments,
types-pywin32,
types-PyYAML,
types-regex,
types-requests,
types-setuptools,
types-tabulate,
types-tqdm,
types-urllib3,
horde_sdk==0.14.3,
horde_model_reference==0.9.0,
]