diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2014-01-23 15:51:20 +0100 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2014-01-24 17:32:18 -0500 |
commit | fe98579005973824000edb91e55975f2e7bf39e1 (patch) | |
tree | 92534c4405c8be483dbd3772be299323d6298c63 /Makefile | |
parent | 47ff1fb4cd7a6c416c93246decacd19628b232c3 (diff) | |
download | ipsilon-fe98579005973824000edb91e55975f2e7bf39e1.tar.gz ipsilon-fe98579005973824000edb91e55975f2e7bf39e1.tar.xz ipsilon-fe98579005973824000edb91e55975f2e7bf39e1.zip |
Use pylint check
Signed-off-by: Petr Vobornik <pvoborni@redhat.com>
Reviewed-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7d81f00 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |