Home | History | Annotate | Download | only in lint

Lines Matching refs:lines

7 def VerifyLineLength(filename, lines, max_length):
8 """Checks to make sure the file has no lines with lines exceeding the length
13 lines: contents of the file as string array
22 for line in lines:
30 def VerifyTabs(filename, lines):
35 lines: contents of the file as string array
44 for line in lines:
51 def VerifyTrailingWhitespace(filename, lines):
52 """Checks to make sure the file has no lines with trailing whitespace.
56 lines: contents of the file as string array
65 for line in lines:
73 def RunOnFile(filename, lines):
94 lines = file.readlines()
95 lint.extend(linter.RunOnFile(filename, lines))