From fc6183b1d1393f717642141ea6629c0e1954a35b Mon Sep 17 00:00:00 2001 From: Severiano Badajoz Date: Wed, 1 Apr 2020 14:31:46 -0700 Subject: [PATCH] add lint-client and lint-diff-client targets --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 70e89531..3c8cdf52 100644 --- a/Makefile +++ b/Makefile @@ -77,6 +77,14 @@ fmt-py: lint: flake8 server +.PHONY: lint-client +lint-client: + cd client && $(MAKE) lint + +.PHONY: lint-diff-client +lint-diff-client: + cd client && $(MAKE) lint-diff + # CREATING DISTRIBUTION RELEASE