lint poller
Some checks failed
Build and Push Poller Docker Image / lint (push) Failing after 28s
Build and Push Poller Docker Image / build (push) Has been skipped

This commit is contained in:
2025-12-12 18:43:36 +01:00
parent ae73ecf68b
commit d7dd7a98fe
6 changed files with 222 additions and 330 deletions

11
poller/Makefile Normal file
View File

@@ -0,0 +1,11 @@
.PHONY: lint lint-fix
FIX ?=
lint:
uv run --extra dev ruff check $(if $(FIX),--fix,) .
uv run --extra dev ruff format $(if $(FIX),,--check) .
uv run --extra dev mypy .
lint-fix:
$(MAKE) lint FIX=1