Remove unuseful suspicious code lint check.

This commit is contained in:
Tim Abbott
2016-04-08 11:35:50 -07:00
parent 9cfa7d5765
commit 14b5e265c2

View File

@@ -132,10 +132,6 @@ js_rules = [
'description': 'Missing space between else and {'},
] + whitespace_rules
python_rules = [
{'pattern': "'[^']*'\s+\([^']*$",
'description': "Suspicious code with quoting around function name"},
{'pattern': '"[^"]*"\s+\([^"]*$',
'description': "Suspicious code with quoting around function name"},
{'pattern': '".*"%\([a-z_].*\)?$',
'description': 'Missing space around "%"'},
{'pattern': "'.*'%\([a-z_].*\)?$",