diff options
author | ncteisen <ncteisen@gmail.com> | 2018-06-07 21:25:53 -0700 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2018-06-07 22:28:16 -0700 |
commit | eb2aa9cb3b47eb3d7980952844b32082c3e5e651 (patch) | |
tree | eefb62e14d2e43d0d308c539e1278d16fd2ceefe /tools/distrib | |
parent | 2ce76b33e36827ea265ce86fb5688ba23a70021b (diff) |
Tighten the bar and refactor and offender:
Diffstat (limited to 'tools/distrib')
-rwxr-xr-x | tools/distrib/run_clang_tidy.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/distrib/run_clang_tidy.py b/tools/distrib/run_clang_tidy.py index 3dbce0b2e6..7ad1c160ba 100755 --- a/tools/distrib/run_clang_tidy.py +++ b/tools/distrib/run_clang_tidy.py @@ -24,13 +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', - 'readability-function-size', -] - extra_args = [ '-x', 'c++', @@ -58,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: |