-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
57 lines (50 loc) · 1.39 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
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: v4.5.0
hooks:
- id: check-yaml
args: [--allow-multiple-documents]
- id: end-of-file-fixer
- id: trailing-whitespace
# disabled because of https://github.com/python-poetry/poetry/issues/9436
# - repo: https://github.com/python-poetry/poetry
# rev: '1.8.2'
# hooks:
# - id: poetry-check
# 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.2.2"
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
additional_dependencies: [types-requests==2.31.0.20240218]
args: [--config-file=pyproject.toml, --ignore-missing-imports]
# bandit - find common security issues
# - repo: https://github.com/pycqa/bandit
# rev: 1.7.7
# hooks:
# - id: bandit
# name: bandit
# exclude: ^tests/,^cprex/commands.py
# args:
# - -r
# - cprex