Skip to content
This repository was archived by the owner on Jan 6, 2023. 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
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
repos:
- repo: https://github.com/PyCQA/doc8.git
rev: 0.11.1
rev: v1.1.1
hooks:
- id: doc8
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.11.4
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 22.12.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v4.2.0
rev: v4.4.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -24,7 +24,7 @@ repos:
- id: check-merge-conflict
- id: debug-statements
- repo: https://github.com/pycqa/flake8.git
rev: 4.0.1
rev: 6.0.0
hooks:
- id: flake8
additional_dependencies:
Expand All @@ -33,14 +33,14 @@ repos:
- flake8-black>=0.1.1
- flake8-docstrings>=1.5.0
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.26.3
rev: v1.28.0
hooks:
- id: yamllint
files: \.(yaml|yml)$
types: [file, yaml]
entry: yamllint --strict
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.942
rev: v0.991
hooks:
- id: mypy
# empty args needed in order to match mypy cli behavior
Expand All @@ -51,13 +51,13 @@ repos:
- pytest
- molecule
- repo: https://github.com/pre-commit/mirrors-pylint
rev: v3.0.0a4
rev: v3.0.0a5
hooks:
- id: pylint
additional_dependencies:
- molecule
- repo: https://github.com/codespell-project/codespell.git
rev: v2.1.0
rev: v2.2.2
hooks:
- id: codespell
name: codespell
Expand Down