fix(fmt):

This commit is contained in:
Alexander Myasoedov
2024-11-30 00:02:31 +02:00
parent 107181fae2
commit f57f3e9f43
21 changed files with 41 additions and 116 deletions
+13 -18
View File
@@ -1,26 +1,24 @@
default_language_version:
python: python3
python: python3.11
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.1
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py39-plus]
args: [--py311-plus]
- repo: https://github.com/psf/black
rev: 22.8.0
rev: 23.11.0
hooks:
- id: black
language_version: python3.9
language_version: python3.11
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
rev: 6.1.0
hooks:
- id: flake8
language_version: python3
language_version: python3.11
additional_dependencies: [flake8-docstrings]
- repo: https://github.com/PyCQA/isort
@@ -30,7 +28,7 @@ repos:
args: [--profile, black]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.5.0
hooks:
- id: check-ast
exclude: '^(third_party)/'
@@ -47,16 +45,15 @@ repos:
args: ['--maxkb=100']
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.14
rev: 0.7.17
hooks:
- id: mdformat
name: mdformat
entry: mdformat .
language_version: python3
language_version: python3.11
- repo: https://github.com/hadialqattan/pycln
rev: v2.1.1 # Possible releases: https://github.com/hadialqattan/pycln/releases
rev: v2.4.0
hooks:
- id: pycln
@@ -65,9 +62,8 @@ repos:
hooks:
- id: teyit
- repo: https://github.com/python-poetry/poetry
rev: '1.6.0'
rev: '1.7.0'
hooks:
- id: poetry-check
- id: poetry-lock
@@ -75,9 +71,8 @@ repos:
args:
- --check
- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
exclude: '^(third_party/)|(poetry.lock)'