feat: Initial project setup with structure, dependencies, and tooling

This commit is contained in:
Craig
2025-04-12 10:01:26 +01:00
parent 8c6de7380f
commit 36d1a877e5
21 changed files with 728 additions and 10 deletions

9
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,9 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0 # Use a specific version
hooks:
- id: ruff-format
- id: ruff
args: [--fix, --select, I001, --exit-non-zero-on-fix]
- id: ruff
args: [--fix, --exit-non-zero-on-fix]