From deec8bc5f5c2072ba576f017e680fdec2e35931a 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 3019395d62df84..a120fe77600a7b 100644 --- a/tools/cpplint.py +++ b/tools/cpplint.py @@ -3024,9 +3024,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.