Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pre-commit autoupdate #990

Merged
merged 1 commit into from
Feb 1, 2025
Merged
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 @@ -29,7 +29,7 @@ repos:
name: run vulture
description: find dead Python code
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
name: run black
Expand All @@ -43,7 +43,7 @@ repos:
args: ['-c', 'pyproject.toml']
additional_dependencies: ['.[toml]']
- repo: https://github.com/gitleaks/gitleaks
rev: v8.23.0
rev: v8.23.3
hooks:
- id: gitleaks
name: run detect hardcoded secrets
Expand Down Expand Up @@ -73,7 +73,7 @@ repos:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
name: run codespell
Expand All @@ -94,7 +94,7 @@ repos:
description: check the Markdown files for broken links
args: [-q]
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.43.0
rev: v0.44.0
hooks:
- id: markdownlint
name: run markdownlint
Expand All @@ -121,15 +121,15 @@ repos:
# env:
# PYTHONUTF8: '1'
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.6
rev: v19.1.7
hooks:
- id: clang-format
name: run clang-format
description: run ClangFormat on all C files
args: ['--style=file']
files: \.(c|h)$
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 6.0.0
hooks:
- id: isort
name: run isort (python)
Expand Down
Loading