Skip to content
Snippets Groups Projects
Commit 58106549 authored by steve-e's avatar steve-e
Browse files

Use pylint instead of pychecker.

The latter one has to execute the modules and does not work all the time.
parent ae5dbe07
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,7 @@ import sys
if os.getcwd().endswith('dev'):
os.chdir('../../src/') # we were in scripts/dev
os.system('pychecker --limit 10000 --no-shadowbuiltin *.py &> /tmp/pychecker-gajim.log')
os.system('$EDITOR /tmp/pychecker-gajim.log')
os.system("pylint --indent-string='\t' --additional-builtins='_' --disable-msg=C0111,C0103,C0111,C0112 --disable-checker=design " + "".join(sys.argv[1:]))
# vim: se ts=3:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment