gajim-plural/scripts/dev/run-pylint.py
Stephan Erb 58106549a1 Use pylint instead of pychecker.
The latter one has to execute the modules and does not work all the time.
2009-10-18 19:40:09 +02:00

13 lines
347 B
Python
Executable file

#!/usr/bin/env python
# (C) 2006 Nikos Kouremenos <kourem@gmail.com>
import os
import sys
if os.getcwd().endswith('dev'):
os.chdir('../../src/') # we were in scripts/dev
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: