From 170fdd55c7ed605bc2b8fcbae68c93a7a1ef8e28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Mon, 20 Apr 2015 20:51:09 +0200 Subject: [PATCH] cpplint: do not break build for style warnings --- cpplint.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpplint.py b/cpplint.py index e718083..6f4e751 100755 --- a/cpplint.py +++ b/cpplint.py @@ -4784,7 +4784,8 @@ def main(): ProcessFile(filename, _cpplint_state.verbose_level) _cpplint_state.PrintErrorCounts() - sys.exit(_cpplint_state.error_count > 0) + # SRombauts: do not break build for cpplint style warnings + #sys.exit(_cpplint_state.error_count > 0) if __name__ == '__main__':