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 # Trim trailing whitespace at the end of lines.
- id: end-of-file-fixer # Make sure files end in a newline and only a newline.
Expand All @@ -10,7 +10,7 @@ repos:
- id: check-merge-conflict # Check for files that contain merge conflict strings.

- repo: https://github.com/PyCQA/flake8
rev: 7.2.0
rev: 7.3.0
hooks:
- id: flake8 # Check style and syntax. Does not modify code, issues have to be solved manually.
args: [
Expand All @@ -19,7 +19,7 @@ repos:
]

- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 7.0.0
hooks:
- id: isort # Sort imports.
args: [
Expand All @@ -31,8 +31,8 @@ repos:
--ensure-newline-before-comments,
]

- repo: https://github.com/psf/black
rev: 25.1.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
hooks:
- id: black # Format code.
args: [--line-length=150]
Expand Down