Merge pull request #244 from schoetbi/FixVs7Oput

Changed vs7 output format so that Visual Studio can parse the error
This commit is contained in:
Elliot Glaysher 2017-05-03 10:15:59 -07:00 committed by GitHub
commit d012c72624

4
cpplint/cpplint.py vendored
View File

@ -1211,8 +1211,8 @@ def Error(filename, linenum, category, confidence, message):
if _ShouldPrintError(category, confidence, linenum):
_cpplint_state.IncrementErrorCount(category)
if _cpplint_state.output_format == 'vs7':
sys.stderr.write('%s(%s): %s [%s] [%d]\n' % (
filename, linenum, message, category, confidence))
sys.stderr.write('%s(%s): error cpplint: [%s] %s [%d]\n' % (
filename, linenum, category, message, confidence))
elif _cpplint_state.output_format == 'eclipse':
sys.stderr.write('%s:%s: warning: %s [%s] [%d]\n' % (
filename, linenum, message, category, confidence))