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
20 changes: 10 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml

- repo: https://github.com/commitizen-tools/commitizen
rev: v4.1.0
rev: v4.10.0
hooks:
- id: commitizen

- repo: https://github.com/executablebooks/mdformat
rev: 0.7.21 # Use the ref you want to point at
rev: 1.0.0 # Use the ref you want to point at
hooks:
- id: mdformat
# Optionally add plugins
Expand All @@ -25,41 +25,41 @@ repos:
- mdformat-black

- repo: https://github.com/pappasam/toml-sort
rev: v0.24.2
rev: v0.24.3
hooks:
- id: toml-sort-fix
args: ["--in-place"]

- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
rev: v1.37.1
hooks:
- id: yamllint
args: ["-d relaxed"]

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.31.0
rev: 0.35.0
hooks:
- id: check-github-workflows

- repo: https://github.com/rhysd/actionlint
rev: v1.7.7
rev: v1.7.9
hooks:
- id: actionlint

- repo: https://github.com/asottile/pyupgrade
rev: v3.19.1
rev: v3.21.2
hooks:
- id: pyupgrade

- repo: https://github.com/codespell-project/codespell
rev: v2.4.0
rev: v2.4.1
hooks:
- id: codespell
additional_dependencies:
- tomli

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.2
rev: v0.14.7
hooks:
- id: ruff
args: [ --fix ]
Expand Down
Loading