diff options
author | Noah Eisen <ncteisen@gmail.com> | 2018-06-11 16:32:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-11 16:32:16 -0700 |
commit | 000ec4533d906ae7b9f8163871fcad72e8a4e1ac (patch) | |
tree | c1353260b02ddd83de01ff07d09aaecf57d7a1e0 /tools/distrib | |
parent | 759eb90d2c11f6580e421fad044f9f46895439b4 (diff) | |
parent | eb2aa9cb3b47eb3d7980952844b32082c3e5e651 (diff) |
Merge pull request #15680 from ncteisen/more-clang
More Clang Tidy
Diffstat (limited to 'tools/distrib')
-rwxr-xr-x | tools/distrib/run_clang_tidy.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/distrib/run_clang_tidy.py b/tools/distrib/run_clang_tidy.py index 337e6b43c8..7ad1c160ba 100755 --- a/tools/distrib/run_clang_tidy.py +++ b/tools/distrib/run_clang_tidy.py @@ -24,12 +24,6 @@ sys.path.append( os.path.dirname(sys.argv[0]), '..', 'run_tests', 'python_utils')) import jobset -GRPC_CHECKS = [ - 'modernize-use-nullptr', - 'google-build-namespaces', - 'google-build-explicit-make-pair', -] - extra_args = [ '-x', 'c++', @@ -57,8 +51,6 @@ args = argp.parse_args() cmdline = [ clang_tidy, - '--checks=-*,%s' % ','.join(GRPC_CHECKS), - '--warnings-as-errors=%s' % ','.join(GRPC_CHECKS) ] + ['--extra-arg-before=%s' % arg for arg in extra_args] if args.fix: |