summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 7d81f007ead855bcf66f8e6a9ba43301f5108d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
all: lint

lint:
	# Analyze code
	# don't show recommendations, info, comments, report
	# W0613 - unused argument
	# Ignore cherrypy class members as they are dynamically added
	pylint -d c,r,i,W0613 -r n -f colorized \
		   --notes= \
		   --ignored-classes=cherrypy \
		   ./ipsilon