Skip to content
This repository was archived by the owner on Feb 27, 2026. 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
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,36 @@ ci:
skip: [pylint]

repos:
- repo: https://github.com/psf/black
rev: 22.12.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.1.0
hooks:
- id: black
- repo: https://github.com/PyCQA/pylint
rev: v2.15.9
rev: v4.0.5
hooks:
- id: pylint
language: system
types: [python]
args: [-rn, -sn]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
rev: v1.19.1
hooks:
- id: mypy
- repo: https://github.com/PyCQA/isort
rev: v5.11.3
rev: 8.0.0
hooks:
- id: isort
- repo: https://github.com/PyCQA/docformatter
rev: v1.5.1
rev: v1.7.7
hooks:
- id: docformatter
additional_dependencies: [tomli]
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.21.2
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.4
rev: v4.0.0-alpha.8
hooks:
- id: prettier
Loading