From 048c0f4738bee87a969e476a6ac9629c22c8ab43 Mon Sep 17 00:00:00 2001 From: Sakthipriyan Vairamani Date: Sun, 6 Mar 2016 19:35:42 +0530 Subject: [PATCH] tools: reduce verbosity of cpplint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every time `make test` is run, the cpplint prints the file it successfully linted. None of the other linters in the project does that. This patch simply removes the "Done processing" message from the cpplint. PR-URL: https://github.com/nodejs/node/pull/5578 Reviewed-By: Ben Noordhuis Reviewed-By: Roman Reiss Reviewed-By: Michaƫl Zasso Reviewed-By: Rich Trott Reviewed-By: James M Snell --- tools/cpplint.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/cpplint.py b/tools/cpplint.py index 98a3986308c4e3..a66c1cb193ac47 100644 --- a/tools/cpplint.py +++ b/tools/cpplint.py @@ -3025,9 +3025,6 @@ def ProcessFile(filename, vlevel): 'One or more unexpected \\r (^M) found;' 'better to use only a \\n') - if not _cpplint_state.output_format == 'tap': - sys.stderr.write('Done processing %s\n' % filename) - def PrintUsage(message): """Prints a brief usage string and exits, optionally with an error message.