Show More
@@ -13,7 +13,7 b' import optparse' | |||||
13 |
|
13 | |||
14 | def repquote(m): |
|
14 | def repquote(m): | |
15 | t = re.sub(r"\w", "x", m.group('text')) |
|
15 | t = re.sub(r"\w", "x", m.group('text')) | |
16 | t = re.sub(r"[^\sx]", "o", t) |
|
16 | t = re.sub(r"[^\s\nx]", "o", t) | |
17 | return m.group('quote') + t + m.group('quote') |
|
17 | return m.group('quote') + t + m.group('quote') | |
18 |
|
18 | |||
19 | def reppython(m): |
|
19 | def reppython(m): | |
@@ -44,30 +44,30 b' def rephere(m):' | |||||
44 | testpats = [ |
|
44 | testpats = [ | |
45 | [ |
|
45 | [ | |
46 | (r'(pushd|popd)', "don't use 'pushd' or 'popd', use 'cd'"), |
|
46 | (r'(pushd|popd)', "don't use 'pushd' or 'popd', use 'cd'"), | |
47 | (r'\W\$?\(\([^\)]*\)\)', "don't use (()) or $(()), use 'expr'"), |
|
47 | (r'\W\$?\(\([^\)\n]*\)\)', "don't use (()) or $(()), use 'expr'"), | |
48 | (r'^function', "don't use 'function', use old style"), |
|
48 | (r'^function', "don't use 'function', use old style"), | |
49 | (r'grep.*-q', "don't use 'grep -q', redirect to /dev/null"), |
|
49 | (r'grep.*-q', "don't use 'grep -q', redirect to /dev/null"), | |
50 | (r'echo.*\\n', "don't use 'echo \\n', use printf"), |
|
50 | (r'echo.*\\n', "don't use 'echo \\n', use printf"), | |
51 | (r'echo -n', "don't use 'echo -n', use printf"), |
|
51 | (r'echo -n', "don't use 'echo -n', use printf"), | |
52 | (r'^diff.*-\w*N', "don't use 'diff -N'"), |
|
52 | (r'^diff.*-\w*N', "don't use 'diff -N'"), | |
53 | (r'(^| )wc[^|]*$', "filter wc output"), |
|
53 | (r'(^| )wc[^|\n]*$', "filter wc output"), | |
54 | (r'head -c', "don't use 'head -c', use 'dd'"), |
|
54 | (r'head -c', "don't use 'head -c', use 'dd'"), | |
55 | (r'ls.*-\w*R', "don't use 'ls -R', use 'find'"), |
|
55 | (r'ls.*-\w*R', "don't use 'ls -R', use 'find'"), | |
56 | (r'printf.*\\\d\d\d', "don't use 'printf \NNN', use Python"), |
|
56 | (r'printf.*\\\d\d\d', "don't use 'printf \NNN', use Python"), | |
57 | (r'printf.*\\x', "don't use printf \\x, use Python"), |
|
57 | (r'printf.*\\x', "don't use printf \\x, use Python"), | |
58 | (r'\$\(.*\)', "don't use $(expr), use `expr`"), |
|
58 | (r'\$\(.*\)', "don't use $(expr), use `expr`"), | |
59 | (r'rm -rf \*', "don't use naked rm -rf, target a directory"), |
|
59 | (r'rm -rf \*', "don't use naked rm -rf, target a directory"), | |
60 | (r'(^|\|\s*)grep (-\w\s+)*[^|]*[(|]\w', |
|
60 | (r'(^|\|\s*)grep (-\w\s+)*[^|\n]*[(|]\w', | |
61 | "use egrep for extended grep syntax"), |
|
61 | "use egrep for extended grep syntax"), | |
62 | (r'/bin/', "don't use explicit paths for tools"), |
|
62 | (r'/bin/', "don't use explicit paths for tools"), | |
63 | (r'\$PWD', "don't use $PWD, use `pwd`"), |
|
63 | (r'\$PWD', "don't use $PWD, use `pwd`"), | |
64 | (r'[^\n]\Z', "no trailing newline"), |
|
64 | (r'[^\n]\Z', "no trailing newline"), | |
65 | (r'export.*=', "don't export and assign at once"), |
|
65 | (r'export.*=', "don't export and assign at once"), | |
66 | ('^([^"\']|("[^"]*")|(\'[^\']*\'))*\\^', "^ must be quoted"), |
|
66 | ('^([^"\'\n]|("[^"\n]*")|(\'[^\'\n]*\'))*\\^', "^ must be quoted"), | |
67 | (r'^source\b', "don't use 'source', use '.'"), |
|
67 | (r'^source\b', "don't use 'source', use '.'"), | |
68 | (r'touch -d', "don't use 'touch -d', use 'touch -t' instead"), |
|
68 | (r'touch -d', "don't use 'touch -d', use 'touch -t' instead"), | |
69 | (r'ls\s+[^|-]+\s+-', "options to 'ls' must come before filenames"), |
|
69 | (r'ls\s+[^|\n-]+\s+-', "options to 'ls' must come before filenames"), | |
70 | (r'[^>]>\s*\$HGRCPATH', "don't overwrite $HGRCPATH, append to it"), |
|
70 | (r'[^>\n]>\s*\$HGRCPATH', "don't overwrite $HGRCPATH, append to it"), | |
71 | (r'stop\(\)', "don't use 'stop' as a shell function name"), |
|
71 | (r'stop\(\)', "don't use 'stop' as a shell function name"), | |
72 | ], |
|
72 | ], | |
73 | # warnings |
|
73 | # warnings | |
@@ -83,7 +83,7 b' uprefix = r"^ \\$ "' | |||||
83 | uprefixc = r"^ > " |
|
83 | uprefixc = r"^ > " | |
84 | utestpats = [ |
|
84 | utestpats = [ | |
85 | [ |
|
85 | [ | |
86 |
(r'^(\S| $ ).*(\S\ |
|
86 | (r'^(\S| $ ).*(\S[ \t]+|^[ \t]+)\n', "trailing whitespace on non-output"), | |
87 | (uprefix + r'.*\|\s*sed', "use regex test output patterns instead of sed"), |
|
87 | (uprefix + r'.*\|\s*sed', "use regex test output patterns instead of sed"), | |
88 | (uprefix + r'(true|exit 0)', "explicit zero exit unnecessary"), |
|
88 | (uprefix + r'(true|exit 0)', "explicit zero exit unnecessary"), | |
89 | (uprefix + r'.*\$\?', "explicit exit code checks unnecessary"), |
|
89 | (uprefix + r'.*\$\?', "explicit exit code checks unnecessary"), | |
@@ -121,16 +121,18 b' pypats = [' | |||||
121 | (r'\S;\s*\n', "semicolon"), |
|
121 | (r'\S;\s*\n', "semicolon"), | |
122 | (r'\w,\w', "missing whitespace after ,"), |
|
122 | (r'\w,\w', "missing whitespace after ,"), | |
123 | (r'\w[+/*\-<>]\w', "missing whitespace in expression"), |
|
123 | (r'\w[+/*\-<>]\w', "missing whitespace in expression"), | |
124 | (r'^\s+\w+=\w+[^,)]$', "missing whitespace in assignment"), |
|
124 | (r'^\s+\w+=\w+[^,)\n]$', "missing whitespace in assignment"), | |
|
125 | (r'(?m)(\s+)try:\n((?:\n|\1\s.*\n)+?)\1except.*?:\n' | |||
|
126 | r'((?:\n|\1\s.*\n)+?)\1finally:', 'no try/except/finally in Py2.4'), | |||
125 | (r'.{85}', "line too long"), |
|
127 | (r'.{85}', "line too long"), | |
126 | (r'[^\n]\Z', "no trailing newline"), |
|
128 | (r'[^\n]\Z', "no trailing newline"), | |
127 |
(r'(\S\ |
|
129 | (r'(\S[ \t]+|^[ \t]+)\n', "trailing whitespace"), | |
128 | # (r'^\s+[^_ ][^_. ]+_[^_]+\s*=', "don't use underbars in identifiers"), |
|
130 | # (r'^\s+[^_ \n][^_. \n]+_[^_\n]+\s*=', "don't use underbars in identifiers"), | |
129 | # (r'\w*[a-z][A-Z]\w*\s*=', "don't use camelcase in identifiers"), |
|
131 | # (r'\w*[a-z][A-Z]\w*\s*=', "don't use camelcase in identifiers"), | |
130 | (r'^\s*(if|while|def|class|except|try)\s[^[]*:\s*[^\]#\s]+', |
|
132 | (r'^\s*(if|while|def|class|except|try)\s[^[\n]*:\s*[^\\n]#\s]+', | |
131 | "linebreak after :"), |
|
133 | "linebreak after :"), | |
132 | (r'class\s[^( ]+:', "old-style class, use class foo(object)"), |
|
134 | (r'class\s[^( \n]+:', "old-style class, use class foo(object)"), | |
133 | (r'class\s[^( ]+\(\):', |
|
135 | (r'class\s[^( \n]+\(\):', | |
134 | "class foo() not available in Python 2.4, use class foo(object)"), |
|
136 | "class foo() not available in Python 2.4, use class foo(object)"), | |
135 | (r'\b(%s)\(' % '|'.join(keyword.kwlist), |
|
137 | (r'\b(%s)\(' % '|'.join(keyword.kwlist), | |
136 | "Python keyword is not a function"), |
|
138 | "Python keyword is not a function"), | |
@@ -152,7 +154,7 b' pypats = [' | |||||
152 | (r'if\s.*\selse', "if ... else form not available in Python 2.4"), |
|
154 | (r'if\s.*\selse', "if ... else form not available in Python 2.4"), | |
153 | (r'^\s*(%s)\s\s' % '|'.join(keyword.kwlist), |
|
155 | (r'^\s*(%s)\s\s' % '|'.join(keyword.kwlist), | |
154 | "gratuitous whitespace after Python keyword"), |
|
156 | "gratuitous whitespace after Python keyword"), | |
155 |
(r'([\(\[]\ |
|
157 | (r'([\(\[][ \t]\S)|(\S[ \t][\)\]])', "gratuitous whitespace in () or []"), | |
156 | # (r'\s\s=', "gratuitous whitespace before ="), |
|
158 | # (r'\s\s=', "gratuitous whitespace before ="), | |
157 | (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=)\S', |
|
159 | (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=)\S', | |
158 | "missing whitespace around operator"), |
|
160 | "missing whitespace around operator"), | |
@@ -206,7 +208,7 b' cpats = [' | |||||
206 | (r'//', "don't use //-style comments"), |
|
208 | (r'//', "don't use //-style comments"), | |
207 | (r'^ ', "don't use spaces to indent"), |
|
209 | (r'^ ', "don't use spaces to indent"), | |
208 | (r'\S\t', "don't use tabs except for indent"), |
|
210 | (r'\S\t', "don't use tabs except for indent"), | |
209 |
(r'(\S\ |
|
211 | (r'(\S[ \t]+|^[ \t]+)\n', "trailing whitespace"), | |
210 | (r'.{85}', "line too long"), |
|
212 | (r'.{85}', "line too long"), | |
211 | (r'(while|if|do|for)\(', "use space after while/if/do/for"), |
|
213 | (r'(while|if|do|for)\(', "use space after while/if/do/for"), | |
212 | (r'return\(', "return is not a function"), |
|
214 | (r'return\(', "return is not a function"), | |
@@ -331,17 +333,34 b' def checkfile(f, logfunc=_defaultlogger.' | |||||
331 | else: |
|
333 | else: | |
332 | pats = pats[0] |
|
334 | pats = pats[0] | |
333 | # print post # uncomment to show filtered version |
|
335 | # print post # uncomment to show filtered version | |
334 | z = enumerate(zip(pre.splitlines(), post.splitlines(True))) |
|
336 | ||
335 | if debug: |
|
337 | if debug: | |
336 | print "Checking %s for %s" % (name, f) |
|
338 | print "Checking %s for %s" % (name, f) | |
337 | for n, l in z: |
|
339 | ||
338 | if "check-code" + "-ignore" in l[0]: |
|
340 | prelines = None | |
|
341 | errors = [] | |||
|
342 | for p, msg in pats: | |||
|
343 | pos = 0 | |||
|
344 | n = 0 | |||
|
345 | for m in re.finditer(p, post): | |||
|
346 | if prelines is None: | |||
|
347 | prelines = pre.splitlines() | |||
|
348 | postlines = post.splitlines(True) | |||
|
349 | ||||
|
350 | start = m.start() | |||
|
351 | while n < len(postlines): | |||
|
352 | step = len(postlines[n]) | |||
|
353 | if pos + step > start: | |||
|
354 | break | |||
|
355 | pos += step | |||
|
356 | n += 1 | |||
|
357 | l = prelines[n] | |||
|
358 | ||||
|
359 | if "check-code" + "-ignore" in l: | |||
339 | if debug: |
|
360 | if debug: | |
340 | print "Skipping %s for %s:%s (check-code -ignore)" % ( |
|
361 | print "Skipping %s for %s:%s (check-code -ignore)" % ( | |
341 | name, f, n) |
|
362 | name, f, n) | |
342 | continue |
|
363 | continue | |
343 | for p, msg in pats: |
|
|||
344 | if re.search(p, l[1]): |
|
|||
345 |
|
|
364 | bd = "" | |
346 |
|
|
365 | if blame: | |
347 |
|
|
366 | bd = 'working directory' | |
@@ -349,14 +368,19 b' def checkfile(f, logfunc=_defaultlogger.' | |||||
349 |
|
|
368 | blamecache = getblame(f) | |
350 |
|
|
369 | if n < len(blamecache): | |
351 |
|
|
370 | bl, bu, br = blamecache[n] | |
352 |
|
|
371 | if bl == l: | |
353 |
|
|
372 | bd = '%s@%s' % (bu, br) | |
354 |
|
|
373 | errors.append((f, n + 1, l, msg, bd)) | |
|
374 | result = False | |||
|
375 | ||||
|
376 | errors.sort() | |||
|
377 | for e in errors: | |||
|
378 | logfunc(*e) | |||
355 |
|
|
379 | fc += 1 | |
356 | result = False |
|
|||
357 | if maxerr is not None and fc >= maxerr: |
|
380 | if maxerr is not None and fc >= maxerr: | |
358 | print " (too many errors, giving up)" |
|
381 | print " (too many errors, giving up)" | |
359 | break |
|
382 | break | |
|
383 | ||||
360 | return result |
|
384 | return result | |
361 |
|
385 | |||
362 | if __name__ == "__main__": |
|
386 | if __name__ == "__main__": |
@@ -50,8 +50,8 b'' | |||||
50 | Python keyword is not a function |
|
50 | Python keyword is not a function | |
51 | ./wrong.py:3: |
|
51 | ./wrong.py:3: | |
52 | > return ( 5+6, 9) |
|
52 | > return ( 5+6, 9) | |
|
53 | gratuitous whitespace in () or [] | |||
53 | missing whitespace in expression |
|
54 | missing whitespace in expression | |
54 | gratuitous whitespace in () or [] |
|
|||
55 | ./quote.py:5: |
|
55 | ./quote.py:5: | |
56 | > '"""', 42+1, """and |
|
56 | > '"""', 42+1, """and | |
57 | missing whitespace in expression |
|
57 | missing whitespace in expression |
General Comments 0
You need to be logged in to leave comments.
Login now