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