| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- repos:
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.4.0
- hooks:
- - id: check-yaml
- - id: trailing-whitespace
- - repo: https://github.com/myint/autoflake
- rev: "v2.0.1"
- hooks:
- - id: autoflake
- args:
- [
- "--recursive",
- "--in-place",
- "--remove-unused-variables",
- "--remove-all-unused-imports",
- "--ignore-init-module-imports",
- ]
- - repo: https://github.com/asottile/pyupgrade
- rev: v3.3.1
- hooks:
- - id: pyupgrade
- args:
- [
- "--py3-plus",
- "--py36-plus",
- "--py37-plus",
- "--py38-plus",
- "--py39-plus",
- "--py310-plus",
- "--py311-plus",
- ]
- files: ".*"
- - repo: https://github.com/psf/black
- rev: "23.1.0"
- hooks:
- - id: black
- - repo: https://github.com/pycqa/isort
- rev: "5.12.0"
- hooks:
- - id: isort
- - repo: https://github.com/PyCQA/flake8
- rev: "6.0.0"
- hooks:
- - id: flake8
- - repo: https://github.com/python-poetry/poetry
- rev: "1.3.0"
- hooks:
- - id: poetry-export
- args: ["-o", "requirements.txt", "--without-hashes"]
- - repo: https://github.com/python-poetry/poetry
- rev: "1.3.0"
- hooks:
- - id: poetry-export
- args:
- ["-o", "requirements-dev.txt", "--without-hashes", "--with", "dev"]
|