1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-06-09 11:50:00 +02:00
dinglehopper/.pre-commit-config.yaml

48 lines
1 KiB
YAML
Raw Normal View History

2023-08-03 19:13:21 +02:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2025-04-16 08:59:58 +02:00
rev: v5.0.0
2023-08-03 19:13:21 +02:00
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-json
- id: check-toml
- id: check-yaml
- id: check-added-large-files
- id: check-ast
- repo: https://github.com/psf/black
2025-04-16 08:59:58 +02:00
rev: 25.1.0
2023-08-03 19:13:21 +02:00
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
2025-04-25 10:13:06 +02:00
rev: v0.11.7
2023-08-03 19:13:21 +02:00
hooks:
- args:
2024-01-02 20:38:40 +01:00
- --fix
- --exit-non-zero-on-fix
id: ruff
2023-08-03 19:13:21 +02:00
- repo: https://github.com/pre-commit/mirrors-mypy
2025-04-16 08:59:58 +02:00
rev: v1.15.0
2023-08-03 19:13:21 +02:00
hooks:
2023-10-23 15:07:22 +02:00
- additional_dependencies:
2024-01-02 20:38:40 +01:00
- types-setuptools
- types-lxml
- numpy # for numpy plugin
- attrs
- multimethod
- rapidfuzz
2023-10-23 15:07:22 +02:00
id: mypy
2024-05-06 16:57:53 +02:00
- repo: https://gitlab.com/vojko.pribudic.foss/pre-commit-update
2025-04-16 08:59:58 +02:00
rev: v0.6.1
hooks:
- id: pre-commit-update
2024-07-22 16:54:33 +02:00
- repo: https://github.com/dhatim/python-license-check
rev: 0.9.2
hooks:
- id: liccheck
language: system