This repository has been archived on 2025-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
gajim-0.16.9/scripts/dev/run-pylint.py
2025-04-02 10:43:46 -07:00

10 lines
345 B
Python

#!/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 --include-ids=y --additional-builtins='_' --disable-msg=C0103,C0111,W0703,W0511,W0142,W0613,R0201 --disable-checker=design " + "".join(sys.argv[1:]))