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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
- --write-changes
- -L timeoutd
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.48.0
rev: v0.49.0
hooks:
- id: markdownlint
name: Fixing markdown linting errors
Expand All @@ -35,7 +35,7 @@ repos:
- id: absolufy-imports
name: Make python imports absolute
- repo: https://github.com/psf/black
rev: 26.3.1
rev: 26.5.1
hooks:
- id: black
name: Python formatting (black)
Expand Down Expand Up @@ -73,21 +73,21 @@ repos:
- id: yesqa
name: Remove unnecessary noqa comments
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.15.12
rev: v0.15.20
hooks:
- id: ruff
name: Linting Python code (ruff)
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/pycqa/pylint
rev: v4.0.5
rev: v4.0.6
hooks:
- id: pylint
name: Linting Python code (pylint)
exclude: ^tests/
args:
- --fail-under=9
- repo: https://github.com/PyCQA/prospector
rev: v1.18.0
rev: v1.19.0
hooks:
- id: prospector
name: Analysing Python code (prospector)
Expand All @@ -99,7 +99,7 @@ repos:
- id: pretty-format-toml
args: [--autofix]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.20.2
rev: v2.1.0
hooks:
- id: mypy
name: Static typechecking (mypy)
Expand Down