-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
47 lines (41 loc) · 1.14 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
args: [--safe, --line-length=100]
- id: black-jupyter
args: [--safe, --line-length=100]
language_version: python3.9
- repo: https://github.com/pycqa/docformatter
rev: v1.7.5
hooks:
- id: docformatter
additional_dependencies: [tomli]
args: [--config, pyproject.toml]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies: [types-PyYAML, types-tqdm]
- repo: https://github.com/pycqa/doc8
rev: v1.1.2
hooks:
- id: doc8
files: ^docs/.*\.(rst|md)$
args: [--ignore, D001]
- repo: https://github.com/pycqa/flake8
rev: 7.1.1
hooks:
- id: flake8
ci:
autoupdate_schedule: weekly