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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ repos:
- id: "trailing-whitespace"

- repo: "https://github.com/astral-sh/ruff-pre-commit"
rev: "v0.13.3"
rev: "v0.15.12"
hooks:
- id: "ruff"
# NOTE: "--exit-non-zero-on-fix" is important for CI to function
# correctly!
args: ["--fix", "--exit-non-zero-on-fix"]

- repo: "https://github.com/psf/black"
rev: "25.9.0"
rev: "26.3.1"
hooks:
- id: "black"

Expand All @@ -47,7 +47,7 @@ repos:
# specify the prettier hook twice if we want to format other things and avoid
# a messy regex.
- repo: "https://github.com/rbubley/mirrors-prettier"
rev: "v3.6.2"
rev: "v3.8.3"
hooks:
- id: "prettier"
files: "CITATION.cff"
Expand All @@ -59,7 +59,7 @@ repos:
- "--verbose"

- repo: "https://github.com/codespell-project/codespell"
rev: "v2.4.1"
rev: "v2.4.2"
hooks:
- id: "codespell"
exclude: ".codespellignore"
Expand Down
Loading