From 281c4dd42f0f99859323783161216e54b4f88448 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 6 Oct 2016 13:38:43 -0400 Subject: [PATCH] Add variable name exceptions to the `make lint` target. --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: -- 2.43.2