-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
40 lines (35 loc) · 1011 Bytes
/
.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
exclude: "templates"
default_language_version:
python: python3.12
repos:
# general checks (see here: https://pre-commit.com/hooks.html)
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-yaml
args: [--allow-multiple-documents]
- id: end-of-file-fixer
- id: trailing-whitespace
# black - formatting
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
name: black
args:
- "--config"
- "./pyproject.toml"
# ruff - linting
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.7.4"
hooks:
- id: ruff
name: ruff
# mypy - lint-like type checking
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
hooks:
- id: mypy
name: mypy
additional_dependencies: [types-requests==2.32.0.20241016, types-tqdm==4.67.0.20241119]
args: [--config-file=pyproject.toml, --ignore-missing-imports]