-
-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
32 lines (30 loc) · 759 Bytes
/
.pre-commit-config.yaml
File metadata and controls
32 lines (30 loc) · 759 Bytes
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
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.9
hooks:
- id: ruff-check
- id: ruff-format
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.1
hooks:
- id: check-github-workflows
- id: check-readthedocs
- repo: https://github.com/asottile/blacken-docs
rev: 1.20.0
hooks:
- id: blacken-docs
additional_dependencies: [black==25.1.0]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.20.0
hooks:
- id: mypy
language_version: python3
files: ^src/webargs/
additional_dependencies:
- marshmallow>=3,<4
- packaging
- flask
# mypy runs under tox in GitHub Actions, skip it in pre-commit.ci
ci:
skip: [mypy]
autoupdate_schedule: monthly