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

Unified Diff: tools/presubmit.py

Issue 2343733002: [inspector] enabled presubmit for inspector sub folder (Closed)
Patch Set: more fixes Created 4 years, 3 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
« src/inspector/String16.cc ('K') | « src/inspector/V8StackTraceImpl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/presubmit.py
diff --git a/tools/presubmit.py b/tools/presubmit.py
index b39d0e31178d614454a055b6bbbf21a9c3f12c2f..6f03df919ee6fca4bb2bacab6828a445fffb75c9 100755
--- a/tools/presubmit.py
+++ b/tools/presubmit.py
@@ -192,9 +192,8 @@ class CppLintProcessor(SourceFileProcessor):
return name.endswith('.cc') or name.endswith('.h')
def IgnoreDir(self, name):
- # TODO(dgozman): remove inspector after fixing the issues.
return (super(CppLintProcessor, self).IgnoreDir(name)
- or (name == 'third_party') or (name == 'inspector'))
+ or (name == 'third_party'))
IGNORE_LINT = ['flag-definitions.h']
« src/inspector/String16.cc ('K') | « src/inspector/V8StackTraceImpl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698