Lines Matching full:line
48 - has a line that ends with whitespace
49 - contains a line >|max_cols| cols unless |max_cols| is 0.
73 # will normalize line endings.
82 for line in lines:
83 if line.endswith(' '):
85 '%s, line %s ends with whitespaces.' %
88 if max_cols and len(line) > max_cols and not 'http://' in line:
90 '%s, line %s has %s chars, please reduce to %d chars.' %
91 (path, line_num, len(line), max_cols)))
92 if '\t' in line:
94 "%s, line %s contains a tab character." %
106 'Found CR (or CRLF) line ending in these files, please use only LF:',