Commit 535752da0f1c9ebb0cebdf415637558756b0538d Parent: f718b11fce70923fca3dbe7205fb4750eb09f18c Author: mcol <mcol@posteo.net> Date: 2021-12-04 13:36:19 +0300 Committer: mcol <mcol@posteo.net> Committed: 2021-12-04 13:36:19 +0300 make all: run format before lint Lint can complain about two import lines importing from the same module, but if format runs first then it merges those two lines.
Makefile Modified
@@ -39,4 +39,4 @@ bash ./test/test.sh .PHONY: all -all: lint format rebuild run test ## Lint, format, rebuild, run, test +all: format lint rebuild run test ## Lint, format, rebuild, run, test