19 lines
456 B
YAML
19 lines
456 B
YAML
repos:
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
rev: 24.2.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.13.2
|
|
hooks:
|
|
- id: isort
|
|
args:
|
|
- --profile=black
|
|
- repo: https://github.com/PyCQA/autoflake
|
|
rev: v2.2.1
|
|
hooks:
|
|
- id: autoflake
|
|
args:
|
|
- --in-place
|
|
- --remove-all-unused-imports
|
|
- --ignore-init-module-imports |