This commit is contained in:
Arseny
2026-07-15 10:45:23 +03:00
commit 9e1d5c3c7e
24 changed files with 992 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
.PHONY: build run stop format tidy
IMAGE := md2gost
build:
docker build -t $(IMAGE) .
run: build
./md2gost.sh report.md -o ./build
stop:
docker stop $(IMAGE) 2>/dev/null || true
format:
uv run black md2gost/
uv run ruff format md2gost/
tidy:
uv run ruff check md2gost/
uv run mypy md2gost/