From 557a7f0364627a1c16eb552261a96b527302e69c Mon Sep 17 00:00:00 2001 From: Lewis Tunstall Date: Wed, 26 Jan 2022 18:18:33 +0100 Subject: [PATCH] Add Makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..01af2a0aa --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: quality style + +# Check code formatting +quality: + python utils/code_formatter.py --check_only + +# Format code samples automatically and check is there are any problems left that need manual fixing +style: + python utils/code_formatter.py