1ci: 2 autoupdate_branch: "3.1.x" 3 autoupdate_schedule: monthly 4repos: 5 - repo: https://github.com/asottile/pyupgrade 6 rev: v2.32.0 7 hooks: 8 - id: pyupgrade 9 args: ["--py37-plus"] 10 - repo: https://github.com/asottile/reorder_python_imports 11 rev: v3.1.0 12 hooks: 13 - id: reorder-python-imports 14 args: ["--application-directories", "src"] 15 additional_dependencies: ["setuptools>60.9"] 16 - repo: https://github.com/psf/black 17 rev: 22.3.0 18 hooks: 19 - id: black 20 - repo: https://github.com/PyCQA/flake8 21 rev: 4.0.1 22 hooks: 23 - id: flake8 24 additional_dependencies: [flake8-bugbear] 25 - repo: https://github.com/peterdemin/pip-compile-multi 26 rev: v2.4.5 27 hooks: 28 - id: pip-compile-multi-verify 29 - repo: https://github.com/pre-commit/pre-commit-hooks 30 rev: v4.2.0 31 hooks: 32 - id: fix-byte-order-marker 33 - id: trailing-whitespace 34 - id: end-of-file-fixer 35