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
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ default_language_version:
node: 17.9.0
repos:
- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: v4.1.0
rev: v6.0.0
hooks:
- id: check-ast
- id: check-docstring-first
Expand All @@ -22,22 +22,22 @@ repos:
args:
- "--markdown-linebreak-ext=md"
- repo: "https://github.com/pre-commit/pygrep-hooks"
rev: v1.9.0
rev: v1.10.0
hooks:
- id: python-check-blanket-noqa
- id: python-check-blanket-type-ignore
- id: python-use-type-annotations
- repo: "https://github.com/pycqa/isort"
rev: 5.11.5
rev: 9.0.0a3
hooks:
- id: isort
- repo: "https://github.com/psf/black"
rev: 25.11.0
rev: 26.5.1
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.15.11
rev: v0.15.20
hooks:
# Run the linter.
- id: ruff
Expand All @@ -46,7 +46,7 @@ repos:
# Don't Run the formatter.
# - id: ruff-format
- repo: "https://github.com/pre-commit/mirrors-prettier"
rev: v2.6.2
rev: v4.0.0-alpha.8
hooks:
- id: prettier
exclude_types:
Expand All @@ -62,7 +62,7 @@ repos:
# args:
# - "--py36-plus"
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.4.2
hooks:
- id: codespell
args: [
Expand All @@ -80,7 +80,7 @@ repos:
additional_dependencies:
- tomli
- repo: "https://github.com/fsfe/reuse-tool"
rev: v5.0.2
rev: v6.2.0
hooks:
- id: reuse
additional_dependencies:
Expand Down
Loading