-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpylint.py
executable file
·52 lines (42 loc) · 1.32 KB
/
pylint.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
import getopt
import os
import sys
pylint = os.getenv('PYLINT', 'pylint')
pyhusky_root = os.getenv('PYHUSKY_ROOT', '.')
default_root = pyhusky_root + '/python'
os.chdir(default_root)
default_module = 'pyhusky'
default_rcfile = 'pylintrc'
def usage():
print("Run command as: $ pylint.py [$PYTHON_MODULE]")
print(" -> $ pylint.py python/pyhusky/frontend/env.py")
print(" -> $ pylint.py pyhusky/frontend")
print(" -> $ pylint.py")
def main(argv=None):
if argv is None:
argv = sys.argv
try:
opts, args = getopt.getopt(argv[1:], "h", ["help"])
except getopt.GetoptError as err:
print(err) # will print something like "option -a not recognized"
usage()
return 2
for o, _ in opts:
if o in ("-h", "--help"):
usage()
return 0
module = ''
if len(args) == 0:
module = default_module
cmd = '{} {} --rcfile {}'.format(pylint, default_module, default_rcfile)
print('[Run] ' + cmd)
os.system(cmd)
else:
module = args
for m in module:
cmd = '{} {} --rcfile {}'.format(pylint, m.replace('python/', ''), default_rcfile)
print('[Run] ' + cmd)
os.system(cmd)
if __name__ == '__main__':
sys.exit(main())