summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-11-24 14:35:27 +0100
committerGitHub <noreply@github.com>2021-11-24 14:35:27 +0100
commit7c3533ca48e69394391945de1563ef7f639cd27d (patch)
treedb8d282b04ab7779ea28256330afa948c16e2550 /ChangeLog
parent5e9d20dc32768e873ab84bc4ed0b489fdda40672 (diff)
downloadpylint-git-7c3533ca48e69394391945de1563ef7f639cd27d.tar.gz
Update reporters to (allow) use of ``end_line`` and ``end_column`` (#5372)
* Update reporters to (allow) use end_line and end_column Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b3c5fbcf7..9a20365af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,11 @@ Release date: TBA
Closes #4982
+* Add ability to add ``end_line`` and ``end_column`` to the ``--msg-template`` option.
+ With the standard ``TextReporter`` this will add the line and column number of the
+ end of a node to the output of Pylint. If these numbers are unknown, they are represented
+ by an empty string.
+
* Introduced primer tests and a configuration tests framework. The helper classes available in
``pylint/testutil/`` are still unstable and might be modified in the near future.