51 lines
1000 B
YAML
51 lines
1000 B
YAML
---
|
|
ci:
|
|
autoupdate_schedule: monthly
|
|
|
|
default_language_version:
|
|
python: python3.11
|
|
|
|
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 22.12.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.3.1
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py37-plus, --keep-percent-format]
|
|
exclude: "tests/test_slots.py"
|
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.12.0
|
|
hooks:
|
|
- id: isort
|
|
files: \.py$
|
|
|
|
- repo: https://github.com/asottile/yesqa
|
|
rev: v1.4.0
|
|
hooks:
|
|
- id: yesqa
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 6.0.0
|
|
hooks:
|
|
- id: flake8
|
|
|
|
- repo: https://github.com/econchick/interrogate
|
|
rev: 1.5.0
|
|
hooks:
|
|
- id: interrogate
|
|
args: [tests]
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: debug-statements
|
|
- id: check-toml
|
|
- id: check-yaml
|