From b02b572ea6260aa0863eaf7f661faadb0e94d819 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 8 Sep 2022 15:56:58 -0500 Subject: [PATCH] change the message template to one vim likes The default message template, with a colon after the filename, works better in vim as an error file (:cfile). Switch, because I don't think anyone else depends on the exact syntax and both forms are clear-ish to humans. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 6bef3df83..fae72e8f6 100644 --- a/.pylintrc +++ b/.pylintrc @@ -72,7 +72,7 @@ evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / stateme # Template used to display messages. This is a python new-style format string # used to format the message information. See doc for all details -msg-template='{path} {line}: {msg} ({symbol})' +msg-template='{path}:{line}: {msg} ({symbol})' # Set the output format. Available formats are text, parseable, colorized, json # and msvs (visual studio).You can also give a reporter class, eg