|
|
@ -36,19 +36,23 @@ class Linter(object):
|
|
|
|
if not len(lines):
|
|
|
|
if not len(lines):
|
|
|
|
# should never happen
|
|
|
|
# should never happen
|
|
|
|
return 'nowhere'
|
|
|
|
return 'nowhere'
|
|
|
|
s = 'lines ' if len(lines) != 1 else 'line '
|
|
|
|
if len(lines) == 1:
|
|
|
|
|
|
|
|
return 'line %i' % lines[0]
|
|
|
|
|
|
|
|
s = 'lines '
|
|
|
|
range_start = range_end = lines[0]
|
|
|
|
range_start = range_end = lines[0]
|
|
|
|
for i, line in enumerate(lines):
|
|
|
|
for i, line in enumerate(lines):
|
|
|
|
if line > range_start + 1 or i == len(lines) - 1:
|
|
|
|
if line > range_end + 1:
|
|
|
|
if i == len(lines) - 1:
|
|
|
|
|
|
|
|
range_end = line
|
|
|
|
|
|
|
|
if range_start == range_end:
|
|
|
|
if range_start == range_end:
|
|
|
|
s += ('%i, ' % range_end)
|
|
|
|
s += ('%i, ' % range_end)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
s += ('%i-%i, ' % (range_start, range_end))
|
|
|
|
s += ('%i-%i, ' % (range_start, range_end))
|
|
|
|
range_start = range_end = line
|
|
|
|
range_start = range_end = line
|
|
|
|
|
|
|
|
if i == len(lines) - 1:
|
|
|
|
|
|
|
|
s += ('%i' % line)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
range_end = line
|
|
|
|
range_end = line
|
|
|
|
|
|
|
|
if i == len(lines) - 1:
|
|
|
|
|
|
|
|
s += ('%i-%i, ' % (range_start, range_end))
|
|
|
|
return s.rstrip(' ').rstrip(',')
|
|
|
|
return s.rstrip(' ').rstrip(',')
|
|
|
|
|
|
|
|
|
|
|
|
class NewlineLinter(Linter):
|
|
|
|
class NewlineLinter(Linter):
|
|
|
@ -62,13 +66,19 @@ class TrailingWhitespaceLinter(Linter):
|
|
|
|
line = line.replace('\r', '')
|
|
|
|
line = line.replace('\r', '')
|
|
|
|
return not line.endswith(' ') and not line.endswith('\t')
|
|
|
|
return not line.endswith(' ') and not line.endswith('\t')
|
|
|
|
|
|
|
|
|
|
|
|
linters = [NewlineLinter(), TrailingWhitespaceLinter()]
|
|
|
|
class TabLinter(Linter):
|
|
|
|
|
|
|
|
msg = 'Contains tabs'
|
|
|
|
|
|
|
|
def check_line(self, line):
|
|
|
|
|
|
|
|
return '\t' not in line
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
linters = [NewlineLinter(), TrailingWhitespaceLinter(), TabLinter()]
|
|
|
|
|
|
|
|
|
|
|
|
root_path = os.path.abspath(sys.argv[1] if len(sys.argv) > 1 else '.')
|
|
|
|
def main():
|
|
|
|
path_blacklist.append(root_path + '/.git')
|
|
|
|
root_path = os.path.abspath(sys.argv[1] if len(sys.argv) > 1 else '.')
|
|
|
|
path_blacklist.append(root_path + '/build')
|
|
|
|
path_blacklist.append(root_path + '/.git')
|
|
|
|
|
|
|
|
path_blacklist.append(root_path + '/build')
|
|
|
|
|
|
|
|
|
|
|
|
for cur, dirnames, filenames in os.walk(root_path):
|
|
|
|
for cur, dirnames, filenames in os.walk(root_path):
|
|
|
|
for filename in filenames:
|
|
|
|
for filename in filenames:
|
|
|
|
full_path = os.path.join(cur, filename)
|
|
|
|
full_path = os.path.join(cur, filename)
|
|
|
|
rel_path = full_path.replace(root_path, '.')
|
|
|
|
rel_path = full_path.replace(root_path, '.')
|
|
|
@ -82,8 +92,11 @@ for cur, dirnames, filenames in os.walk(root_path):
|
|
|
|
except LinterError as e:
|
|
|
|
except LinterError as e:
|
|
|
|
error('%s: %s' % (rel_path, e))
|
|
|
|
error('%s: %s' % (rel_path, e))
|
|
|
|
|
|
|
|
|
|
|
|
if success:
|
|
|
|
if success:
|
|
|
|
print('All linters completed successfully')
|
|
|
|
print('All linters completed successfully')
|
|
|
|
sys.exit(0)
|
|
|
|
sys.exit(0)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
sys.exit(1)
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
main()
|
|
|
|