From ab6aa9c36bc06ae0f14f404bd73d8865b161eb0f Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 5 Oct 2016 13:37:48 -0400 Subject: [PATCH] Add a "make lint" target. --- makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/makefile b/makefile index f1be9f0..9f59a36 100644 --- a/makefile +++ b/makefile @@ -2,6 +2,10 @@ check: python test/suite.py +.PHONY: lint +lint: + pylint --reports=n *.py + .PHONY: clean clean: rm -r __pycache__ -- 2.43.2