From 357c340080c20e337c9f79903d2fb73ab30124a7 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Thu, 26 Dec 2019 12:22:35 +0000 Subject: [PATCH] Add lint command --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 25a833fb..df3b4118 100644 --- a/Makefile +++ b/Makefile @@ -21,3 +21,7 @@ docs-live: install-dev .PHONY: format format: black graphene examples setup.py tests_asyncio + +.PHONY: lint +lint: + flake8 graphene examples setup.py tests_asyncio