Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: PRESUBMIT.py

Issue 2737963003: Update pylintrc to catch more style violations. (Closed)
Patch Set: Allow longer test methods and string module use Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pylintrc » ('j') | pylintrc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index f7500e80768f8c0750263afa5156f9e8cf6f48ec..6a8b26c4a5782e2dd5b8bbe9bf8a61db512bc803 100755
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -489,6 +489,7 @@ def _CommonChecks(input_api, output_api):
black_list=(r'^base[\\\/].*\.py$',
r'^build[\\\/].*\.py$',
r'^buildtools[\\\/].*\.py$',
+ r'^infra[\\\/].*\.py$',
r'^ios[\\\/].*\.py$',
r'^out.*[\\\/].*\.py$',
r'^testing[\\\/].*\.py$',
@@ -498,10 +499,6 @@ def _CommonChecks(input_api, output_api):
r'^tools-webrtc[\\\/]mb[\\\/].*\.py$',
r'^tools-webrtc[\\\/]valgrind[\\\/].*\.py$',
r'^xcodebuild.*[\\\/].*\.py$',),
- disabled_warnings=['F0401', # Failed to import x
- 'E0611', # No package y in x
- 'W0232', # Class has no __init__ method
- ],
pylintrc='pylintrc'))
# TODO(nisse): talk/ is no more, so make below checks simpler?
« no previous file with comments | « no previous file | pylintrc » ('j') | pylintrc » ('J')

Powered by Google App Engine
This is Rietveld 408576698