-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
68 lines (62 loc) · 1.72 KB
/
.pre-commit-config.yaml
File metadata and controls
68 lines (62 loc) · 1.72 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
58
59
60
61
62
63
64
65
66
67
68
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
args: [ '--maxkb=1000' ]
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
hooks:
- id: pyupgrade
args: [ "--py38-plus" ]
name: Upgrade code
# - repo: https://github.com/codespell-project/codespell
# rev: v2.3.0
# hooks:
# - id: codespell
# additional_dependencies: [ tomli ]
# args: ["--write-changes"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.1
hooks:
- id: ruff
types_or: [ python, pyi, jupyter ]
args: [ "--fix", "--preview" ]
exclude: "^notebooks/.*|^docs/.*"
- id: ruff-format
types_or: [ python, pyi, jupyter ]
args: [ "--preview" ]
exclude: "^notebooks/.*|^docs/.*"
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.18
hooks:
- id: mdformat
additional_dependencies:
- mdformat-admon
- mdformat-footnote
- mdformat-frontmatter
- mdformat-mkdocs
- mdformat-toc
- mdformat-gfm
args: [ "--number" ]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.13.0"
hooks:
- id: mypy
args: [ ]
- repo: local
hooks:
- id: pytest-check
name: pytest-check
entry: pytest -v tests
language: system
pass_filenames: false
always_run: true