Use pylint instead of pychecker.
The latter one has to execute the modules and does not work all the time.
This commit is contained in:
parent
ae5dbe0774
commit
58106549a1
|
@ -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:
|
Loading…
Reference in New Issue