From af9757d052b042812eb5f98b66dddd8a151c2615 Mon Sep 17 00:00:00 2001 From: herr kaste Date: Thu, 26 Apr 2018 08:24:15 +0200 Subject: [PATCH] Disable default stderr handler --- linter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/linter.py b/linter.py index cce5cf6..cb77302 100644 --- a/linter.py +++ b/linter.py @@ -6,6 +6,7 @@ class Cpplint(Linter): regex = r'^.+:(?P\d+):\s+(?P.+)' tempfile_suffix = '-' error_stream = util.STREAM_BOTH # errors are on stderr + on_stderr = None # handle stderr via split_match defaults = { 'selector': 'source.c, source.c++', '--filter=,': '',