Initial Commit. I'm afraid of testing it.

This commit is contained in:
2025-05-01 15:48:11 +02:00
parent e4dae9ec35
commit 51bc491cc8
10 changed files with 1464 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.2 # Replace with the latest version
hooks:
- id: ruff
name: ruff check
args: ["check"]
- id: ruff
name: ruff format
args: ["format"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.9.0 # Replace with the latest version
hooks:
- id: mypy
args:
- "--allow-redefinition"
- "import-untyped"
- "src/"