repos: | |
- repo: https://github.com/PyCQA/autoflake | |
rev: v2.0.1 | |
hooks: | |
- id: autoflake | |
args: ["--remove-all-unused-imports"] | |
- repo: https://github.com/psf/black | |
rev: 23.1.0 | |
hooks: | |
- id: black | |
- repo: https://github.com/PyCQA/flake8.git | |
rev: 6.0.0 | |
hooks: | |
- id: flake8 | |
- repo: https://github.com/hadialqattan/pycln | |
rev: v2.1.3 | |
hooks: | |
- id: pycln | |
args: [--config=pyproject.toml] | |
- repo: https://github.com/pycqa/isort | |
rev: 5.12.0 | |
hooks: | |
- id: isort | |
files: "\\.(py)$" | |
args: ["--profile", "black"] | |