summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4cc215c..f39b26f 100644
--- a/Makefile
+++ b/Makefile
@@ -8,9 +8,10 @@ lint:
# don't show recommendations, info, comments, report
# W0613 - unused argument
# Ignore cherrypy class members as they are dynamically added
+ # Ignore IPA API class members as they are dynamically added
pylint -d c,r,i,W0613 -r n -f colorized \
--notes= \
- --ignored-classes=cherrypy \
+ --ignored-classes=cherrypy,API \
./ipsilon
pep8: