]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - makefile
Fiddle with the pylint settings.
[dunshire.git] / makefile
index e619d42b0c5ac2d09e3e62ce10f752df961d60de..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,h,A,C,G,_K,_L' \
-               $(SRCDIR)/*.py
+       PYTHONPATH="$(SRCDIR)" pylint --rcfile=./.pylintrc $(SRCS)
 
 .PHONY: clean
 clean: