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
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ repos:
- id: autoflake
args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variable']
- repo: https://github.com/pycqa/isort
rev: 5.9.3
rev: 7.0.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 21.9b0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
hooks:
- id: black
language_version: python3
Expand All @@ -25,7 +25,7 @@ repos:
- id: flakehell
exclude: ^docs|examples|tests
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -34,32 +34,32 @@ repos:
- id: check-toml
- id: debug-statements
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
rev: v1.19.1
hooks:
- id: mypy
files: ^dotify
additional_dependencies: [types-all]
- repo: https://github.com/commitizen-tools/commitizen
rev: v2.19.0
rev: v4.11.2
hooks:
- id: commitizen
stages: [commit-msg]
- repo: https://github.com/jorisroovers/gitlint
rev: v0.15.1
rev: v0.19.1
hooks:
- id: gitlint
stages: [commit-msg]
args: [--ignore=B6, --msg-filename]
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: 2.3.54
rev: 3.6.0
hooks:
- id: editorconfig-checker
- repo: https://github.com/jendrikseipp/vulture
rev: v2.3
rev: v2.14
hooks:
- id: vulture
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: 0.5.1
rev: 1.7.1
hooks:
- id: tox-ini-fmt
- repo: local
Expand All @@ -71,7 +71,7 @@ repos:
entry: poetry export --without-hashes -o requirements.txt
files: ^(pyproject.toml|poetry.lock)$
- repo: https://github.com/hadolint/hadolint
rev: v2.7.0
rev: v2.14.0
hooks:
- id: hadolint-docker
args: ['--ignore', 'DL3006']
Expand Down