feat: FuzzForge AI - complete rewrite for OSS release

This commit is contained in:
AFredefon
2026-01-30 09:57:48 +01:00
commit b46f050aef
226 changed files with 12943 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.PHONY: lint test format check
lint:
uv run ruff check src tests
uv run mypy src
test:
uv run pytest tests
format:
uv run ruff format src tests
uv run ruff check --fix src tests
check: lint test