chore(repository): initialize project foundation

This commit is contained in:
2026-08-06 15:20:24 +02:00
commit 62bc8eb00c
6 changed files with 565 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
repos:
# ---------------------------------------------------------------------------
# Generic hooks
# ---------------------------------------------------------------------------
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-toml
- id: check-json
- id: check-added-large-files
- id: check-merge-conflict
- id: mixed-line-ending
# ---------------------------------------------------------------------------
# Ruff
# ---------------------------------------------------------------------------
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.9
hooks:
- id: ruff
args:
- --fix
- id: ruff-format
# ---------------------------------------------------------------------------
# MyPy
# ---------------------------------------------------------------------------
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.18.1
hooks:
- id: mypy