From d2169ce784a9f5f021de7116a73c5c8e2c1a2dd5 Mon Sep 17 00:00:00 2001 From: Mark Joshwel Date: Sat, 11 May 2024 16:20:45 +0000 Subject: [PATCH] meta: add qc script --- qc.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 qc.sh diff --git a/qc.sh b/qc.sh new file mode 100755 index 0000000..b73a1c7 --- /dev/null +++ b/qc.sh @@ -0,0 +1,7 @@ +#!/bin/sh +set -e + +black lfcircle.py --check +isort lfcircle.py --check +mypy lfcircle.py +ruff check lfcircle.py