From 0a6a25d236e389a19d5e55882bddb0160e14d41a Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Tue, 10 Dec 2024 23:46:24 +0100 Subject: [PATCH] Add Makefile for linting and formatting --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..116798bd --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +format: + ruff format + +lint: + ruff check + +lint-fix: + ruff check --fix