From: Michael Orlitzky Date: Thu, 6 Oct 2016 17:38:43 +0000 (-0400) Subject: Add variable name exceptions to the `make lint` target. X-Git-Tag: 0.1.0~204 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=281c4dd42f0f99859323783161216e54b4f88448 Add variable name exceptions to the `make lint` target. --- diff --git a/makefile b/makefile index 10742db..eb080e7 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,10 @@ check: .PHONY: lint lint: - PYTHONPATH="src/dunshire" pylint --reports=n src/dunshire/*.py + PYTHONPATH="src/dunshire" pylint \ + --reports=n \ + --good-names='b,c,h,A,C,G,_K,_L' \ + src/dunshire/*.py .PHONY: clean clean: