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'] |