From f134d64349ce6a6013ac8787b55983959479f4f5 Mon Sep 17 00:00:00 2001 From: chrisbroderick Date: Thu, 8 Sep 2022 23:42:20 +0100 Subject: [PATCH] Add import sort checking and fixing to makefile --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 33c39c74..f34a0de5 100644 --- a/Makefile +++ b/Makefile @@ -64,12 +64,14 @@ test: .PHONY: format format: autopep8 --exit-code --global-config .flake8 helpdesk + isort --line-length=120 --src helpdesk . #: checkformat - checks formatting against configured format specifications for the project. .PHONY: checkformat checkformat: flake8 helpdesk --count --show-source --statistics --exit-zero --max-complexity=20 + isort --line-length=120 --src helpdesk . --check #: documentation - Build documentation (Sphinx, README, ...).