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
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
repos:
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.3.1
rev: v1.5.5
hooks:
- id: remove-tabs

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: check-merge-conflict
Expand All @@ -15,15 +15,15 @@ repos:
- id: detect-private-key
- id: check-ast

- repo: https://github.com/psf/black
rev: 22.10.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
hooks:
- id: black
args: ['--line-length', '110']
additional_dependencies: ['click==8.0.4']

- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 7.0.0
hooks:
- id: isort
args:
Expand All @@ -32,18 +32,18 @@ repos:
- --line-length=110

- repo: https://github.com/PyCQA/flake8
rev: '5.0.4'
rev: '7.3.0'
hooks:
- id: flake8
additional_dependencies: ['pep8-naming', 'flake8-docstrings']

- repo: https://github.com/PyCQA/pylint
rev: v2.15.5
rev: v4.0.4
hooks:
- id: pylint

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.982
rev: v1.19.0
hooks:
- id: mypy
additional_dependencies:
Expand All @@ -57,7 +57,7 @@ repos:
- --no-strict-optional

- repo: https://github.com/asottile/pyupgrade
rev: v3.2.0
rev: v3.21.2
hooks:
- id: pyupgrade

Expand Down
Loading