-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pre-commit-config.yaml
41 lines (37 loc) · 1.03 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
repos:
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort src and tests
args: [--profile=black, --line-length=80]
files: "autoverify|tests"
- repo: https://github.com/ambv/black
rev: 23.1.0
hooks:
- id: black
name: black src and tests
args: [--line-length=80]
files: "autoverify|tests"
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
name: flake8 src and tests
files: "autoverify|tests"
- repo: https://github.com/pycqa/pydocstyle
rev: 6.3.0
hooks:
- id: pydocstyle
name: pydocstyle src
additional_dependencies: ["tomli"] # for passing .toml config
args: [--config=pyproject.toml]
files: autoverify
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.1.1
hooks:
- id: mypy
name: mypy src
args: [--config-file=pyproject.toml]
additional_dependencies: ["types-PyYAML"]
files: autoverify