Skip to content
This repository was archived by the owner on Apr 7, 2025. It is now read-only.
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,13 +1,13 @@
repos:
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 25.1.0
hooks:
- id: black
language_version: python3.7
args: ["-l", "81", "-t", "py36"]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -16,15 +16,15 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/PyCQA/flake8
rev: '6.0.0' # pick a git hash / tag to point to
rev: '7.2.0' # pick a git hash / tag to point to
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.4.1' # Use the sha / tag you want to point at
rev: 'v1.15.0' # Use the sha / tag you want to point at
hooks:
- id: mypy
- repo: https://github.com/codespell-project/codespell
rev: 'v2.2.5'
rev: 'v2.4.1'
hooks:
- id: codespell
args: ["-I", "codespell.txt"]
Expand Down