]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - makefile
Fiddle with the pylint settings.
[dunshire.git] / makefile
index fa29cf8d7dbb80cb81d3e10b3e6b86f1f871754a..1f991d28841685b065d97d08261dacfc3f0f23e8 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,4 +1,9 @@
 SRCDIR := src/dunshire
+SRCS := $(SRCDIR)/*.py
+
+doc: $(SRCS) doc/source/conf.py doc/makefile
+       sphinx-apidoc -f -o doc/source $(SRCDIR)
+       cd doc && $(MAKE) html
 
 .PHONY: check
 check:
@@ -6,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' \
-               $(SRCDIR)/*.py
+       PYTHONPATH="$(SRCDIR)" pylint --rcfile=./.pylintrc $(SRCS)
 
 .PHONY: clean
 clean: