Some small updates.

Signed-off-by: Pavel Kirilin <win10@list.ru>
This commit is contained in:
2023-09-22 00:18:02 +04:00
parent d9e0285bb3
commit a28019a8c8
7 changed files with 857 additions and 1173 deletions

View File

@ -12,7 +12,7 @@ repos:
- repo: https://github.com/asottile/add-trailing-comma
rev: v2.1.0
hooks:
- id: add-trailing-comma
- id: add-trailing-comma
- repo: local
hooks:
@ -26,38 +26,46 @@ repos:
name: autoflake
entry: autoflake
language: system
types: [ python ]
args: [ --in-place, --remove-all-unused-imports, --remove-duplicate-keys ]
types: [python]
args:
[
--in-place,
--remove-all-unused-imports,
--remove-duplicate-keys,
--recursive,
lenochka,
]
- id: isort
name: isort
entry: isort
language: system
types: [ python ]
types: [python]
- id: flake8
name: Check with Flake8
entry: flake8
language: system
pass_filenames: false
types: [ python ]
args: [--count, .]
types: [python]
args: [--count, lenochka]
- id: mypy
name: Validate types with MyPy
entry: mypy
language: system
types: [ python ]
pass_filenames: false
args: [lenochka]
- id: yesqa
name: Remove usless noqa
entry: yesqa
language: system
types: [ python ]
types: [python]
- id: pytest
name: pytest
entry: pytest
language: system
pass_filenames: false
types: [ python ]
types: [python]