]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Add variable name exceptions to the `make lint` target.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 6 Oct 2016 17:38:43 +0000 (13:38 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 6 Oct 2016 17:38:43 +0000 (13:38 -0400)
makefile

index 10742db350df3a78805825b5f87459661887aeb8..eb080e72dc6f67ccbf4a13422142c368f9d0012f 100644 (file)
--- 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: