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 @@ -5,7 +5,7 @@ ci:
repos:

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-ast
name: validate Python code
Expand All @@ -24,20 +24,20 @@ repos:
- id: check-yaml

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.2
rev: 0.37.4
hooks:
- id: check-github-workflows

- repo: https://github.com/sirosen/texthooks
rev: 0.6.8
rev: 0.7.1
hooks:
- id: fix-smartquotes
- id: fix-spaces
- id: fix-ligatures
- id: forbid-bidi-controls

- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.15.0
rev: v2.16.0
hooks:
- id: pretty-format-ini
args: [--autofix]
Expand All @@ -60,7 +60,7 @@ repos:
- id: text-unicode-replacement-char

- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
rev: v2.4.2
hooks:
- id: codespell
name: codespell (add false positives to pyproject.toml)
Expand All @@ -69,13 +69,13 @@ repos:
- tomli

- repo: https://github.com/crate-ci/typos
rev: v1.34.0
rev: v1
hooks:
- id: typos
name: typos (add false positives to _typos.toml)

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.3
rev: v0.15.20
hooks:
- id: ruff
name: ruff (see https://docs.astral.sh/ruff/rules)
Expand All @@ -84,18 +84,18 @@ repos:
name: autoformat source code with ruff-format

- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.24.1
rev: v0.25
hooks:
- id: validate-pyproject
additional_dependencies: ['validate-pyproject-schema-store[all]']

- repo: https://github.com/tox-dev/pyproject-fmt
rev: v2.6.0
rev: v2.25.1
hooks:
- id: pyproject-fmt

- repo: https://github.com/hukkin/mdformat
rev: 0.7.22
rev: 1.0.0
hooks:
- id: mdformat
name: Format .md files
Expand Down
Loading