]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - makefile
Locally disable another pylint warning to get clean again.
[dunshire.git] / makefile
index 63192024af65d6e4c544ec3f5d3e64281a022497..1f991d28841685b065d97d08261dacfc3f0f23e8 100644 (file)
--- a/makefile
+++ b/makefile
@@ -2,7 +2,7 @@ SRCDIR := src/dunshire
 SRCS := $(SRCDIR)/*.py
 
 doc: $(SRCS) doc/source/conf.py doc/makefile
-       sphinx-apidoc -o doc/source $(SRCDIR)
+       sphinx-apidoc -f -o doc/source $(SRCDIR)
        cd doc && $(MAKE) html
 
 .PHONY: check
@@ -11,10 +11,7 @@ check:
 
 .PHONY: lint
 lint:
-       PYTHONPATH="$(SRCDIR)" pylint \
-               --reports=n \
-               --good-names='b,c,e1,e2,h,A,C,G,K,_K,L,L_matrix,_L,indented_L' \
-               $(SRCS)
+       PYTHONPATH="$(SRCDIR)" pylint --rcfile=./.pylintrc $(SRCS)
 
 .PHONY: clean
 clean: