From: Michael Orlitzky Date: Wed, 5 Oct 2016 17:37:48 +0000 (-0400) Subject: Add a "make lint" target. X-Git-Tag: 0.1.0~214 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=ab6aa9c36bc06ae0f14f404bd73d8865b161eb0f Add a "make lint" target. --- 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__