-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pre-commit-config.yaml
48 lines (42 loc) · 1.01 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
ci:
skip: [pytest]
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: v4.5.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.2.0
hooks:
- id: black
name: black
args:
- "--config"
- "./pyproject.toml"
# ruff - linting
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.3.0"
hooks:
- id: ruff
name: ruff
# mypy - lint-like type checking
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
hooks:
- id: mypy
name: mypy
- repo: local
hooks:
- id: pytest
name: pytest
entry: poetry run pytest --cov=src tests
language: system
types: [python]
pass_filenames: false