aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSam Scholten2025-09-11 14:49:58 +1000
committerSam Scholten2025-09-11 14:49:58 +1000
commitcadac019b6cdabe5d42b3658414e1842662aac37 (patch)
treea4f147992ce6397d4ee25eacdae48c9514410ce0 /Makefile
downloadpicostream-cadac019b6cdabe5d42b3658414e1842662aac37.tar.gz
picostream-cadac019b6cdabe5d42b3658414e1842662aac37.zip
init
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c9a7a95
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+
+
+
+format:
+ ruff format
+ ruff check --fix --select F,B,I .
+ ruff format
+
+lint:
+ prospector --with-tool mypy
+
+complexity:
+ complexipy --sort asc .
+
+complexity-json:
+ complexipy --sort desc --output-json .
+
+