bump pre-commit configuration

This commit is contained in:
Frédéric Péters 2022-01-28 08:34:14 +01:00
parent c931602fe7
commit 3273c00008
1 changed files with 11 additions and 1 deletions

View File

@ -2,7 +2,17 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/psf/black
rev: 20.8b1
rev: 21.10b0
hooks:
- id: black
args: ['--target-version', 'py37', '--skip-string-normalization', '--line-length', '110']
- repo: https://github.com/PyCQA/isort
rev: 5.7.0
hooks:
- id: isort
args: ['--profile', 'black', '--line-length', '110']
- repo: https://github.com/asottile/pyupgrade
rev: v2.20.0
hooks:
- id: pyupgrade
args: ['--keep-percent-format', '--py37-plus']