Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exclude: |
)$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
# General
- id: check-added-large-files
Expand Down Expand Up @@ -46,7 +46,7 @@ repos:
meta/pre-commit-config-base.yaml|
)$
- repo: https://github.com/codespell-project/codespell
rev: "v2.4.1"
rev: "v2.4.2"
hooks:
- id: codespell
args:
Expand All @@ -62,7 +62,7 @@ repos:
)$
# Markdown
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.22
rev: 1.0.0
hooks:
- id: mdformat
additional_dependencies:
Expand All @@ -72,7 +72,7 @@ repos:
.github/ISSUE_TEMPLATE/.*md|
)$
- repo: https://github.com/tcort/markdown-link-check
rev: "v3.13.7"
rev: "v3.14.2"
hooks:
- id: markdown-link-check
args: [--quiet, --config, .meta/markdown-link-check.json]
Expand All @@ -85,11 +85,11 @@ repos:
- id: python-use-type-annotations
- id: python-no-log-warn
- repo: https://github.com/asottile/add-trailing-comma
rev: "v3.2.0"
rev: "v4.0.0"
hooks:
- id: add-trailing-comma
- repo: https://github.com/asottile/pyupgrade
rev: "v3.20.0"
rev: "v3.21.2"
hooks:
- id: pyupgrade
args: [--py310-plus]
Expand All @@ -100,16 +100,16 @@ repos:
additional_dependencies:
- pep8-naming==0.14.1
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.16.1"
rev: "v1.20.1"
hooks:
- id: mypy
args: [--config-file, .meta/mypy.ini]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: "25.1.0"
rev: "26.3.1"
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 8.0.1
hooks:
- id: isort
name: isort (python)
Expand Down
Loading