Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.
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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
- id: check-useless-excludes

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks: # https://github.com/pre-commit/pre-commit-hooks#hooks-available
- id: check-merge-conflict
- id: check-executables-have-shebangs
Expand All @@ -21,12 +21,12 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.24.1
rev: v0.25
hooks:
- id: validate-pyproject

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.4
rev: v0.15.12
hooks:
- id: ruff
args: [ --fix ]
Expand All @@ -41,7 +41,7 @@ repos:
- id: poetry-install

- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.17.0'
rev: 'v1.20.2'
hooks:
- id: mypy
pass_filenames: false # Pass all files in the repository except those excluded in pyproject.toml
Expand All @@ -54,13 +54,13 @@ repos:
- 'pytest'

- repo: https://github.com/PyCQA/bandit
rev: "1.8.6"
rev: "1.9.4"
hooks:
- id: bandit
args: [-c, pyproject.toml, -r, -l]
additional_dependencies: ["bandit[toml]"]

- repo: https://github.com/commitizen-tools/commitizen
rev: v4.8.3
rev: v4.13.10
hooks:
- id: commitizen
Loading