| Index: tools/presubmit.py
|
| diff --git a/tools/presubmit.py b/tools/presubmit.py
|
| index a4db69a6f5414a9d66ade28c584725147001be3d..bd541a2d8ad21eebfb4a8055528139e7ad4bd642 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']
|
|
|
|
|