Add help text to be shown on form based login page
[cascardo/ipsilon.git] / Makefile
1 all: lint pep8
2
3 lint:
4         # Analyze code
5         # don't show recommendations, info, comments, report
6         # W0613 - unused argument
7         # Ignore cherrypy class members as they are dynamically added
8         pylint -d c,r,i,W0613 -r n -f colorized \
9                    --notes= \
10                    --ignored-classes=cherrypy \
11                    ./ipsilon
12
13 pep8:
14         # Check style consistency
15         pep8 ipsilon