Update pre-commit

This commit is contained in:
Zeva Rose 2022-02-02 20:00:47 -07:00
parent 446e78b6ae
commit 28a1cb0dc5

View file

@ -1,6 +1,6 @@
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1 rev: v4.1.0
hooks: hooks:
- id: check-toml - id: check-toml
- id: check-yaml - id: check-yaml
@ -16,23 +16,23 @@ repos:
- id: python-check-blanket-noqa - id: python-check-blanket-noqa
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 21.7b0 rev: 22.1.0
hooks: hooks:
- id: black - id: black
args: [--line-length=100] args: [--line-length=100]
- repo: https://github.com/pre-commit/mirrors-isort - repo: https://github.com/pre-commit/mirrors-isort
rev: V5.9.3 rev: V5.10.1
hooks: hooks:
- id: isort - id: isort
args: ["--profile", "black"] args: ["--profile", "black"]
- repo: https://github.com/pycqa/flake8 - repo: https://github.com/pycqa/flake8
rev: 3.9.2 rev: 4.0.1
hooks: hooks:
- id: flake8 - id: flake8
additional_dependencies: additional_dependencies:
- flake8-annotations~=2.0 - flake8-annotations~=2.7
- flake8-bandit~=2.1 - flake8-bandit~=2.1
- flake8-docstrings~=1.5 - flake8-docstrings~=1.6
args: [--max-line-length=120, --ignore=ANN101 D107 ANN102 ANN206 D105 ANN204] args: [--max-line-length=100, --ignore=ANN101 D107 ANN102 ANN206 D105 ANN204]