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