doxy/.pre-commit-config.yaml

29 lines
698 B
YAML
Raw Normal View History

2023-01-10 15:46:17 +01:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-toml
- id: check-added-large-files
- repo: https://github.com/pycqa/isort
2023-04-20 14:57:16 +02:00
rev: 5.12.0
2023-01-10 15:46:17 +01:00
hooks:
- id: isort
args: [--profile, black]
- repo: https://github.com/pre-commit/mirrors-mypy
2023-04-20 14:57:16 +02:00
rev: v1.2.0
2023-01-10 15:46:17 +01:00
hooks:
- id: mypy
- repo: https://github.com/psf/black/
2023-04-20 14:57:16 +02:00
rev: 23.3.0
2023-01-10 15:46:17 +01:00
hooks:
- id: black
language_version: python3.10
- repo: https://github.com/asottile/pyupgrade
2023-04-20 14:57:16 +02:00
rev: v3.3.1
2023-01-10 15:46:17 +01:00
hooks:
- id: pyupgrade
args: [--py38-plus]