-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
58 lines (50 loc) · 1.21 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
# See https://pre-commit.com/ for usage and config
default_language_version:
python: python3.12
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
# general:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
# executable files:
- id: check-executables-have-shebangs
# other files (markup & docs):
- id: check-json
- id: check-yaml
- repo: https://github.com/myint/autoflake
rev: v1.6.0
hooks:
- id: autoflake
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
- repo: local
hooks:
- id: flake8
name: flake8
language: system
entry: flake8
types_or: [python, pyi]
- repo: local
hooks:
- id: mypy
name: mypy (full)
language: system
entry: mypy
require_serial: true
types_or: [python, pyi]
- repo: https://github.com/python-poetry/poetry
rev: 1.8.2
hooks:
- id: poetry-lock
args: ["--no-update"]
- id: poetry-check
- id: poetry-install