-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
41 lines (40 loc) · 1.05 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
default_install_hook_types: [pre-commit, pre-push]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude_types: ["jupyter"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.3
hooks:
- id: ruff
- id: ruff-format
types_or: [python, pyi, jupyter]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
hooks:
- id: mypy
- repo: https://github.com/pdm-project/pdm
rev: 2.10.0
hooks:
- id: pdm-export
stages: [pre-push]
args: ["-o", "requirements.txt", "--prod"]
- id: pdm-lock-check
stages: [pre-push]
- repo: https://github.com/datarootsio/databooks
rev: 1.3.10
hooks:
- id: databooks-assert
args: ["--recipe", "seq-exec"]
- id: databooks-meta
args:
[
"--no-rm-exec",
"--cell-meta-keep",
"editable",
"--cell-meta-keep",
"slideshow",
]