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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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
Expand All @@ -15,7 +15,7 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.12.4
rev: v0.14.14
hooks:
# Run the linter.
#- id: ruff-check
Expand All @@ -24,21 +24,21 @@ repos:
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.0
rev: v1.19.1
hooks:
- id: mypy
additional_dependencies: [types-colorama, typer]
args: [--ignore-missing-imports, --no-strict-optional, --disable-error-code=assignment]

- repo: https://github.com/PyCQA/bandit
rev: 1.8.6
rev: 1.9.3
hooks:
- id: bandit
args: ["-r", "ipecmd_wrapper/"]
exclude: tests/

- repo: https://github.com/commitizen-tools/commitizen
rev: v4.8.3
rev: v4.12.1
hooks:
- id: commitizen
- id: commitizen-branch
Expand Down
Loading