-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
57 lines (49 loc) · 1.17 KB
/
.pre-commit-config.yaml
File metadata and controls
57 lines (49 loc) · 1.17 KB
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
# See https://pre-commit.com/ for usage and config
default_language_version:
python: python3.13
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: v2.3.1
hooks:
- id: autoflake
- repo: https://github.com/pycqa/isort
rev: 6.0.1
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 25.1.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: 2.1.3
hooks:
- id: poetry-lock
- id: poetry-check
- id: poetry-install