X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=eb080e72dc6f67ccbf4a13422142c368f9d0012f;hb=7577aaf1786d897fa1517bb8fd4ff367fd09113c;hp=9f59a36bec439d23ab78cdb1bd24db1b531187af;hpb=ab6aa9c36bc06ae0f14f404bd73d8865b161eb0f;p=dunshire.git diff --git a/makefile b/makefile index 9f59a36..eb080e7 100644 --- a/makefile +++ b/makefile @@ -4,8 +4,11 @@ check: .PHONY: lint lint: - pylint --reports=n *.py + PYTHONPATH="src/dunshire" pylint \ + --reports=n \ + --good-names='b,c,h,A,C,G,_K,_L' \ + src/dunshire/*.py .PHONY: clean clean: - rm -r __pycache__ + rm -rf src/dunshire/__pycache__