generated from niqzart/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
61 lines (53 loc) · 1.3 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
59
60
61
# 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: 23.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
args:
- "--strict"
require_serial: true
types_or: [python, pyi]
- repo: https://github.com/python-poetry/poetry
rev: 1.8.0
hooks:
- id: poetry-check
files: ^(pyproject.toml|poetry.lock)$
- id: poetry-lock
files: ^(pyproject.toml|poetry.lock)$
args: ["--no-update"]