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
26 changes: 13 additions & 13 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
hooks:
- id: check-hooks-apply
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-ast
- id: check-builtin-literals
Expand All @@ -23,11 +23,11 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/hhatto/autopep8
rev: v2.3.1
rev: v2.3.2
hooks:
- id: autopep8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
rev: v1.20.1
hooks:
- id: mypy
- repo: https://github.com/pre-commit/pygrep-hooks
Expand All @@ -40,32 +40,32 @@ repos:
- id: python-no-log-warn
- id: python-use-type-annotations
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
rev: v4.0.0
hooks:
- id: add-trailing-comma
- repo: https://github.com/asottile/pyupgrade
rev: v3.17.0
rev: v3.21.2
hooks:
- id: pyupgrade
- repo: https://github.com/asottile/yesqa
rev: v1.5.0
hooks:
- id: yesqa
- repo: https://github.com/asottile/dead
rev: v1.5.2
rev: v2.1.0
hooks:
- id: dead
- repo: https://github.com/psf/black
rev: 24.8.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8
args: ["--max-line-length", "88", "--extend-ignore", "E203,E501"]
- repo: https://github.com/PyCQA/bandit
rev: 1.7.10
rev: 1.9.4
hooks:
- id: bandit
- repo: https://github.com/PyCQA/pydocstyle
Expand All @@ -74,17 +74,17 @@ repos:
- id: pydocstyle
args: ["--convention", "pep257", "--add-ignore", "D100,D104,D107"]
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 8.0.1
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.23
rev: v0.1.30
hooks:
- id: terraform-fmt
- id: terraform-validate
- repo: https://github.com/hadolint/hadolint
rev: v2.13.1-beta
rev: v2.14.0
hooks:
- id: hadolint-docker
- repo: local
Expand Down
Loading