2022-06-06 13:18:45 -07:00
|
|
|
exclude: ^scripts
|
2022-06-02 18:32:16 -07:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-12-18 09:17:28 -08:00
|
|
|
rev: v4.5.0
|
2022-06-02 18:32:16 -07:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
|
|
|
- id: debug-statements
|
|
|
|
- id: name-tests-test
|
|
|
|
- id: requirements-txt-fixer
|
|
|
|
- repo: https://github.com/asottile/setup-cfg-fmt
|
2023-12-18 09:17:28 -08:00
|
|
|
rev: v2.5.0
|
2022-06-02 18:32:16 -07:00
|
|
|
hooks:
|
|
|
|
- id: setup-cfg-fmt
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2024-02-19 09:19:25 -08:00
|
|
|
rev: v3.15.1
|
2022-06-02 18:32:16 -07:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
|
|
|
args: [--py39-plus]
|
2023-12-16 17:28:41 -08:00
|
|
|
- repo: https://github.com/PyCQA/autoflake
|
2024-02-19 09:19:25 -08:00
|
|
|
rev: v2.3.0
|
2023-12-16 17:28:41 -08:00
|
|
|
hooks:
|
|
|
|
- id: autoflake
|
|
|
|
args: [-i, --remove-all-unused-imports, --ignore-init-module-imports]
|
2023-04-22 17:54:58 -07:00
|
|
|
- repo: https://github.com/PyCQA/isort
|
2023-12-18 09:17:28 -08:00
|
|
|
rev: 5.13.2
|
2023-04-22 17:54:58 -07:00
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
args: [--af,--add-import, 'from __future__ import annotations']
|
2022-06-02 18:32:16 -07:00
|
|
|
- repo: https://github.com/psf/black
|
2024-02-19 09:19:25 -08:00
|
|
|
rev: 24.2.0
|
2022-06-02 18:32:16 -07:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
2024-01-08 09:15:56 -08:00
|
|
|
rev: 7.0.0
|
2022-06-02 18:32:16 -07:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
2024-02-06 18:01:26 -08:00
|
|
|
additional_dependencies: [flake8-encodings, flake8-builtins, flake8-length, flake8-print, flake8-no-nested-comprehensions]
|
2022-06-02 18:32:16 -07:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2023-12-25 09:15:30 -08:00
|
|
|
rev: v1.8.0
|
2022-06-02 18:32:16 -07:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
2023-12-17 16:15:26 -08:00
|
|
|
additional_dependencies: [types-setuptools, types-requests, settngs>=0.9.1]
|
2022-06-06 13:18:45 -07:00
|
|
|
ci:
|
|
|
|
skip: [mypy]
|