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.ci] pre-commit autoupdate #324

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-toml
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.6
rev: v0.7.0
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/psf/black
rev: 23.11.0
rev: 24.10.0
hooks:
- id: black
args:
- --safe
- --target-version=py37
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.1
rev: v1.12.1
hooks:
- id: mypy
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions klaus/ctagscache.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
this could be optimized in the future.
(**) "most likely": currently implemented as "most recently used"
"""

import atexit
import gzip
import os
Expand Down
1 change: 1 addition & 0 deletions tools/dumbtest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" Very dumb testing tool: Ensures all sites respond with HTTP 2xx/3xx """

import atexit
import re
import sys
Expand Down
Loading